body {
    padding: 0;
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#main-container {
    display: flex;
    justify-content: center;
    padding: 100px;
    background-color: #ffffff;
    color: #005b96;
    flex: 1; 
    min-height: 450px;
}

#form-container{
    display: flex;
    justify-content: center;
    border: 1px solid #b3cde0;
    border-radius: 5px;
    width: 1000px;
    box-shadow: 0 0 5px #c8d2d8c3;
}

#left{
    background-color: #e3eaef;
    width: 400px;
    border-radius: 5px 0 0 5px;
    display: flex;
    align-items: center;
}

#left img{
    height: 400px;
    width: 400px;
}

#right{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 700px;
    padding: 25px;
    border-radius: 5px;
    gap: 20px;
}

.form-input input {
    padding: 10px;
    border: none;
    outline: none;
    background-color: white;
    color: #005b96;
    border-radius: 5px;
    font-size: 14px;
    border: 1px solid #b3cde0;
}
.form-input, #gender-input {
    display: flex;
    font-weight: bold;
    flex-direction: column;
    gap: 5px;
}

#gender-opt{
    display: flex;
    gap: 10px;
}

#form-container button:hover {
    background: linear-gradient(to bottom, #749bca, #c6d4de);
    color: #005b96;
}

#bottom-text{
    display: flex;
    justify-content: center;
    margin-top: 5px;
    font-size: 12px;
}

h2{
    margin: 0;
    text-align: center;
    font-size: 30px;
    margin-top: 10px;
    display: flex;
}

a{
    color: #005b96;
    text-decoration: none;
    font-weight: bold;
}

#error-msg{
    display: flex;
    justify-content: center;
    color: red;
    font-style: italic;
    font-weight: bold;
}

#register-btn{
    font-size: 15px;
    font-weight: bold;
    padding: 10px; 
    background: linear-gradient(to bottom, #1A4C8F, #749bca);
    color: #e3eaef;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

#remember {
    display: flex;
    font-weight: bold;
    gap: 5px;
}
