* {
    padding: none;
    margin: 0;
}

.alert {
    background-color: rgba(26, 190, 40, 0.712);
    width: 25rem;
    display: none;
    margin: 1rem auto;
    text-align: center;
    animation-name: animateTop;
    animation-duration: 0.6s;
    position: relative;
    padding: 4px;

}

.outer {
    display: flex;
    justify-content: center;
    align-items: center;

}

.outer .outer-inner {
    width: 60%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    flex-direction: column;
}

.outer-inner .form {
    padding-left: 2rem;
    padding-top: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    text-align: center;
    margin: 5rem auto;
    background-color: white;
    -webkit-box-shadow: 10px 10px 32px -4px rgba(0, 0, 0, 0.56);
    -moz-box-shadow: 10px 10px 32px -4px rgba(0, 0, 0, 0.56);
    box-shadow: 10px 10px 32px -4px rgba(0, 0, 0, 0.56);
}

.form h2 {
    margin-bottom: 2rem;
}

form input {
    width: 100%;
    padding: 10px 5px;
    margin-top: 5px;
}

.gender {
    display: flex;
    flex-direction: column;
    padding-left: 2rem;
    padding-top: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    text-align: center;
    margin: 5rem auto;
    background-color: white;
    border: 1px solid grey;
    margin: 5px 0;
    padding: 5px;

}

.gender .content {
    display: flex;
}

.gender .radio {
    display: flex;

}


.select {
    width: 100%;
    background-color: red;
    margin: 5px 0;
}

.select select {
    width: 100%;
    padding: 10 0px;
    color: black;


}

select option {
    color: #955df4;
    padding: 5px;
}

.dob {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid grey;
    padding: 10px 0;
    margin: 5px 0;
}

.dob input {
    outline: none;
    border: none
}



.file {
    display: flex;
    border: 1px solid grey;
    align-items: center;
}

.checkbox {
    display: flex;
    align-items: center;

    justify-content: center;
    border: 1px solid grey;
    padding: 10px 0;
    margin: 5px 0;
}

.checkbox span {
    padding: 10px 5px;
}



.checkbox .checkbox-inner {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: white;
}

.checkbox-inner .content {
    display: flex;
    width: 90%;
    justify-content: space-evenly;
}

textarea {
    margin: 5px 0;
    ;
    resize: none;
    width: 100%;
    height: 15vh;
    padding: 10px;
    outline: none;
    border: 1px solid grey;
}


.button {
    display: flex;
    gap: 10px;
    justify-content: space-between;

}

.button input {
    margin-top: 1rem;
    width: 9rem;
    height: 2rem;

    color: white;
    /* border-radius:1rem; */
    border: none;
    cursor: pointer;
    transition: .3s;
}

.button #submit {
    background-color: #955df4;
}

.button #reset {
    background-color: #ec3b35;
}

/* coded by Rankush */