.container {
    /* margin-top: 120px; */
    /* padding-top: 100px; */
    /* min-height: 50vh; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-box {
    width: 100%;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 400px;
    min-width: 400px;
    text-align: center;
    /* height: 100vh; */
    gap: 10px;
    /* margin-top: 150px; */
}


.form-box h2{
    font-weight: 600;
    font-size: 26px;
}

.button-section {
    display: flex;
    justify-content: end;
    align-items: end;
}


label.error {
    color: rgb(255, 72, 72);
    font-size: 12px;
    margin-bottom: 0;
}

i,
i::after,
i::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: revert;
}

.hide-me {
    display: none;
}

.or-line {
    width: 100%;
    margin-block: 25px;
    position: relative;
}

.or-line::before {
    position: absolute;
    content: "OR";
    left: 0;
    top: 50%;
    left: 50%;
    transform: translateY(-55%)translateX(-50%);
    background-color: white;
    width: 20px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* text-transform: lowercase; */
    font-size: 12px;
}


.sign-in-with-google-button {
    text-decoration: none !important;
    font-size: 14px;
    color: #000000 !important;
    border: 1px solid #b2b2b2;
    width: 100%;
    border-radius: 5px;
    display: block;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.sign-in-with-google-button:hover {
    border: 1px solid #0171e3;
}

.sign-in-with-apple {
    background: black;
    text-decoration: none !important;
    font-size: 14px;
    color: #fff !important;
    width: 100%;
    border-radius: 5px;
    display: block;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: not-allowed;
}

.bottom-section {
    display: flex;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.bottom-section p{
    color: #707070;
}


.bottom-section a{
    text-decoration: none;
    color: #0171e3;
    font-weight: 500;
}

.bottom-section * {
    margin: 0;
}

.error-message {
    background: rgb(216, 36, 36);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.error-message span {
    font-weight: 500;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70% !important;
    max-width: 750px;
    background-color: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 3rem 5rem rgb(0 0 0 / 30%);
    z-index: 10;
    height: auto;
    display: block;
  }
  
#language-modal {
    width: 40% !important;
}

@media (max-width: 420px) {
    .form-box {
        padding: 30px;
        /* margin-top: 50px; */
    }
}

@media only screen and (max-width: 985px){
    .bottom-section {
        margin-top: 20px;
    }

    .form-box {
        min-width: 100%;
        padding: 0;
    }
    
    .container {
        padding: 32px;
        margin-top: 40px;
    }

    .col-12 {
        padding: 0;
    }
}


.cm-country-code-list {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
}

.cm-country-code-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.cm-country-code-item:hover {
    background: #f0f0f0;
}

.cm-country-flag {
    width: 20px;
    height: 14px;
    margin-right: 10px;
    object-fit: cover;
    border-radius: 2px;
}

.cm-country-code {
    margin-right: 8px;
    min-width: 50px;
    font-weight: 400;
    font-size: 14px;
    color: #777777;
}

.cm-country-name {
    font-size: 14px;
    text-align: left;
}