﻿div {
    --section-width-desktop: 304px;
    --section-width-mobile: 230px;
}
.page_root {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 2%;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}
#appleIcon > .fa-apple {
    color: #B3B3B3;
}

.title-section {
    margin-bottom: 20px auto;
    width: 100%;
}

.MAccHeader {
    font-weight: bold;
    font-size: 28px;
}

.MAccDesc {
    font-weight: 500;
    font-size: 18px;
}

.parent-txt {
    width: var(--section-width-desktop);
    height: 35px;
    border-radius: 5px;
    padding: 5px;
    border: none;
    background-color: #edeeef;
}

.buttonsWrapper {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-direction: column;
    margin: 0 auto;
}

.clButtons {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    width: var(--section-width-desktop);
}

.clAlert {
    width: var(--section-width-desktop);
    border: none;
    margin: 0 auto;
}

.fa-google {
    background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55%/150% 150% no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.account-options-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    border: 1px solid #d3d3d3;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.extra-bottom-space {
    padding-bottom: 30px;
}
.account-options-header {
    padding: 10px;
    text-align: center;
    width: 100%;
    background-color: black;
    color: white;
    font-weight: 600;
}


@media (max-width: 355px) {
    .parent-txt {
        width: var(--section-width-mobile);
    }

    .clButtons {
        width: var(--section-width-mobile);
    }

    .clAlert {
        width: var(--section-width-mobile);
    }
}