*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: linear-gradient(200deg, #0e75b9, #000000);
}
.container{
    max-width: 700px;
    width: 100%;
    background-color: #FFFFFF;
    padding: 25px 30px;
    border-radius: 5px;
    box-shadow: 05px 10px rgba(0, 0, 0, 0.30);
}
.container .title{
    font-size: 25px;
    font-weight: 650;
    position: relative;
}
.container .title::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 50px;
    top: 28px;
    border-radius: 50px;
    background: linear-gradient(200deg, #0e75b9, #000000);
}
.content form .user-details{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0 15px 0;
}
form .input-inbox span .details{
    display: block;
    font-weight: 500;
    margin: 5px;
}
.user-details .input-inbox input{
    height: 45px;
    width: 100%;
    outline: none;
    font-size: 16px;
    border-radius: 5px;
    padding-left: 15px;
    border: 1px solid #cccccc;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
}
.user-details .input-inbox input:focus,
.user-details .input-inbox input:valid{
    border-color: #0e75b9;
}
form .gender-details .gender-title{
    font-size: 18px;
    font-weight: 500;
    font-weight: 50;
}
form .category{
    display: flex;
    width: 80%;
    margin: 14px 0;
    justify-content: space-around;
}
form .category label{
    display: flex;
    align-items: center;
    cursor: pointer;
}
form .category label .radio{
    height: 18px;
    width: 18px;
    border-radius: 50%;
    margin-right: 10px;
    background: #d9d9d9;
    border: 5px solid transparent;
    transition: all 0.3s ease;
}
#radio-1:checked ~ .category label .one,
#radio-2:checked ~ .category label .two{
    background: #0e75b9;
    border-color: #d9d9d9;
}
form input[type="radio"]{
    display: none;
}
form .button input{
    height: 100%;
    width: 100%;
    border-radius: 8px;
    border: none;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    background: linear-gradient(200deg, #0e75b9, #000000);
}
form .button input:hover{
    background: #cccccc;
    color: #000000;
}

form .user-details .input-inbox{
    margin-bottom: 15px;
    width: 100%;
}
form .category{
    width: 100%;
}
.content form .user-details{
    max-height: 300px;
    overflow-y: scroll;
}
.user-details::-webkit-scrollbar{
    width: 5px;
}
.select{
    display: grid;
    width: 100%;
    height: 45px;
}
form .reset input{
    height: 100%;
    width: 100%;
    border-radius: 8px;
    border: none;
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 8px;
    margin-top: 5px;
    transition: all 0.3s ease;
    background: #cccccc;
}
/* Responsive */
@media(max-width: 459px){
    .container .content {
        flex-direction: column;
    }
}
@media(max-width: 584px){
    .container{
        max-width: 100%;
    }
}