﻿.account-container {
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 33px;
}
.account-form {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 44px;
}

.account-banner {
    flex-basis: 45%;
    border-radius: 20px;
    height: auto;
    aspect-ratio: 1/1;
    align-self: center;
    margin-right: 5%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.account-radiance-logo {
    width: 33%;
}


.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        margin-bottom: 8px;
        font-weight: 800;
        font-size: 14px;
        color: #8D8D8D;
    }

    .form-group input,
    .form-group textarea {
        padding: 6px 0;
        border: none;
        border-bottom: 1px solid #ddd;
        font-size: 14px;
        outline: none;
        background: transparent;
        transition: border-color 0.3s ease;
    }
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
}

    .radio-label input[type="radio"] {
        display: none;
    }

.radio-custom {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}



.radio-label input[type="radio"]:checked + .radio-custom::before {
    content: '✔';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-weight: 100;
}

.radio-label input[type="radio"]:not(:checked) + .radio-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: #E0E0E0;
}


.submit-btn {
    color: white;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    float: right;
    width: 214px;
    height: 54px;
    background: #000000;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    color: #FFFFFF;
}

    .submit-btn:hover {
        background: #333;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
.form-check-input:checked {
    background-color: black !important;
    border-color: black !important;
}

.form-check-input:focus {
    border-color: black !important;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25) !important;
}

@media(max-width:770px){
    .account-banner {
        display: none;
    }
    .account-form {
        flex-basis: 100%;
    }

}