/* Register Page Specific Styles */
.form-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.form-container h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.form-container .form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-container label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.form-container input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-container input:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}


p {
    margin-top: 20px;
}

a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}
/* make the terms labet and radio on the same row*/
.terms {
    font-size: small;
    display: flex;
    align-items: center;
    gap: 5px;
}