@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Poppins');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: linear-gradient(90deg, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
}

.container {
    max-width: 700px;
    width: 100%;
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.container h1 {
    font-size: 25px;
    letter-spacing: 1px;
    border: 0px;
    border-bottom: 5px solid;
    border-image: linear-gradient(90deg, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
    border-image-slice: 1;
    padding: 10px;
    color: #000;
    margin-bottom: 30px;
    padding-left: 10px;
}

.content form .user-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0 10px 0;
}

form .user-details .input-box {
    margin-bottom: 15px;
    width: 300px;
}

span.required {
    color: #ff0000;
}

.user-details .input-box input {
    height: 45px;
    width: 100%;
    outline: none;
    font-size: 15px;
    border-radius: 5px;
    padding-left: 15px;
    border: 1px solid #ccc;
    border-bottom-width: 1.5px;
    transition: all 0.3s ease;
}

.birth-details label {
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
}

.birth-details select {
    font-size: 15px;
    padding: 5px 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    border-bottom-width: 1.5px;
    transition: all 0.3s ease;
}

.user-details .input-box input:focus,
.birth-details select:focus {
    border-color: #9b59b6;
}

form .gender-details {
    font-size: 15px;
}

form .gender-title {
    font-size: 20px;
    margin-left: 0;
}

form .category {
    display: flex;
    width: 100%;
    margin: 10px 0;
    justify-content: space-between;
}

form .category label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-right: 12px;
    margin-left: 3px;
}

input[type=radio] {
    accent-color: #9b59b6;
}

.tacbox {
    position: relative;
    display: flex;
    vertical-align: middle;
    font-size: 14px;
    width: 100%;
}

input[type="checkbox"] {
    accent-color: #9b59b6;
    margin: 3px 0 0;
    margin-right: 5px;
    margin-bottom: 15px;
    line-height: normal;
    width: 15px;
    height: 15px;
}

form .button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
}

form .button input {
    height: 100%;
    width: 30%;
    border-radius: 5px;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
}

form .button input:hover {
    background: linear-gradient(-90deg, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);;
}