@import url('https://fonts.googleapis.com/css2?family=Boldonse&family=Fjalla+One&family=Oswald:wght@700&display=swap');

body{
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: radial-gradient( circle at top left ,rgb(4, 109, 13) 25%,rgb(7, 163, 54),rgb(7, 163, 54) 60%,rgb(10, 55, 153));

}

.container{
    max-width: 700px;
    width: 100%;
    background-color:azure;
    padding: 25px 30px;
    border-radius: 5px;
    font-family:'Oswald','Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    box-shadow: 7px 7px 30px rgb(0, 0, 0);
    
}

.container .title {
    font-family:'Oswald';
    font-size: 25px;
    font-weight: 500;
    position: relative;
}
.container .title::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -25%;
    height: 7px;
    width: 135px;
    background: radial-gradient( circle at top left,rgb(10, 55, 153),rgb(27, 10, 153),rgb(153, 10, 143));
    border-radius: 20px;
}
.container form .user-details {
    padding-top: 3%;
    display: flex;
    flex-wrap:wrap;
    justify-content:space-between;
    margin: 20px 0 12px 0;
}
form .user-details .input-box {
    margin-bottom: 15px;
    width: calc(100% / 2 - 20px);
}
form .user-details .input-box .details{
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    
}
form .user-details .input-box input {
    height: 24px;
    width: 100%;
    outline: none;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 15px;
    padding-left: 10px;
    border-bottom-width: 2px;
    border-right-width: 2px;
    transition: all 0.3s ease-in-out;
    box-shadow: 5px 5px 10px;
    
}
form .user-details .input-box input:focus{border-color: blue;}
form .user-details .input-box input:valid{ border-color: rgb(35, 238, 16);}
form .user-details .input-box input:not(:placeholder-shown):invalid:focus{
    border-color: rgb(238, 23, 16);
}

form .user-details .gender-details .gender-title{

    font-size: 20px;
    font-weight: 500;
    text-shadow: 0px 0px 1px;

}
.gender-details .category{
    display: flex;
    
    width: calc(137% - 20px);
    margin: 14px 0;
    justify-content: space-between;

    
}
.category label {
    display: flex;
    align-items: center;
    
}
.category .dot-1 ,.dot-2{
    height: 9px;
    width: 9px;
    background-color: #d9d9d9;
    border-radius: 100%;
    margin-right: 10px;
    border: 4px solid transparent;
}

#dot-1:checked ~ .category .dot-1{
        border-color: #d9d9d9;
        background: #598bb6;
        transition: all 0.5s ease-in-out;
}
#dot-2:checked ~ .category .dot-2{
        border-color: #d9d9d9;
        background: #e42bbf;
        transition: all 0.5s ease-in-out;
}



.title.male-active{
    color: #2367e5;
}

.title.female-active{
    color: #e42bbf;
}

form input[type="radio"]{
    display: none;
}
form .button{

    height: 45px;
    margin: 45px 0;
}

.major-box .details{
    display:flow-root;
    font-size: 20px;
    font-weight: 500;
    text-shadow: 0px 0px 1px;
    padding-bottom: 12px;
    padding-left: 8px;
    


}


form .button input{
    height: 100%;
    width: 100%;
    outline:none;
    color: #ffff;
    background:linear-gradient( 90deg ,rgb(4, 109, 13) 25%,rgb(7, 163, 54),rgb(7, 163, 54) 60%,rgb(10, 55, 153));
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    transition-duration: 4s;
    
    
}
form .button input:hover{
        background:linear-gradient( -90deg ,rgb(4, 109, 13) 25%,rgb(7, 163, 54),rgb(7, 163, 54) 60%,rgb(10, 55, 153));

        
}

.signup{
    
    
    
    text-align: center;
}


.container form .signup .login-text{

    text-decoration: none;
    color: black;
    transition: transform 0.2s ease;
    display: inline-block;
}

.container form .signup .login-text:hover{

    text-decoration: underline;
    color: #0f59e3;
    transform: scale(1.1);
}



