* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.bg {
    position: relative;
    background-image: url('../images/bg1.jpg'), linear-gradient(90deg, rgba(246, 151, 91, 1) 2%, rgba(180, 55, 236, 1) 50%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg .intro {
    padding: 0 50px;
}

.bg .intro h1 {
    font-size: 35px;
    margin-bottom: 20px;
}

.login {
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-control {
    padding-left: 2rem;
    width: 300px;
}

form h1 {
    color: rgb(253 152 88);
    margin: 40px auto 25px auto;
    text-align: center;
}

.radio-container {
    display: flex;
    justify-content: space-around;
    margin: 15px auto;
}


.hidden-radio {
    position: absolute;
    opacity: 0;
}

.radio-container {
    display: flex;
    /* flex-direction: column; */
}

.radio-label {
    display: inline-block;
    position: relative;
    padding-left: 30px; 
    margin-bottom: 10px; 
    cursor: pointer;
    line-height: 1.5;
}

.radio-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px; 
    height: 15px; 
    border: 1px solid #333;
    background-color: #fff; 
    border-radius: 50%;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}


.hidden-radio:checked + .radio-label::before {
    background-color: rgba(246, 151, 91, 1); 
    border-color: #000000; 
}

span.fa {
    transform: translate(-135px, -27px);
}

.input-fields {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* .input-data {
    margin: 5px 0;
    padding: 12px 12px 12px 35px;
    border-radius: 12px;
    border: 1px solid grey;
    width: 300px;
} */

.input-data:focus-visible,
.input-data:active,
.input-data:focus-within {
    border: 1px solid rgb(166, 4, 230);
}

.submit-form {
    display: flex;
    justify-content: center;
    margin: 25px auto 25px 0;
}

.submit-form .btn {
    padding: 8px 30px;
    background: rgb(253 152 88);
    border-radius: 18px;
    border: 0;
    width: 300px;
    color: white;
    font-weight: 700;
}

@media (min-width: 992px) {
    .col-md-60 {
        flex: 0 0 auto;
        width: 50%;
    }
} 

@media (max-width: 991px) {
    .col-md-60 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (max-width: 768px) {

    .bg {
        height: auto;
        padding: 120px 30px 30px 30px;
    }

    span.fa {
        transform: translate(-135px
        px
        , -27px);
    }

    .input-data,
    .submit-form .btn {
        width: 330px;
    }

    .col-md-60 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 450px) {
    form h1 {
        font-size: 28px;
    }

    .bg {
        height: auto;
        padding: 130px 0px 70px 0px;
    }

    .form-control {
        width: 240px;
    }

    span.fa {
        transform: translate(-100px, -27px);
    }

    .input-data,  
    .submit-form .btn {
        width: 240px;
    }

    .col-md-60 {
        flex: 0 0 auto;
        width: 100%;
    }
}

