/* General Form Container */
main{
    align-content: center;
}

.form-container {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 78vh;
    background-color: var(--navbar-bg);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
    text-align: center;
    overflow: auto;
    justify-self: center;
}

/* Logo & Header */
.form-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.form-header h2 {
    font-size: 24px;
}

/* Input Fields */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    width: 80%;
    text-align: left;
    font-size: 14px;
    margin-top: 10px;
}

input {
    width: 80%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-top: 5px;
    font-size: 16px;
}

/* Insurance Header */
.insurance-header {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: underline;
}

/* Submit Button */
.create-account-btn {
    background-color: red;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.create-account-btn:hover {
    background-color: darkred;
}

#account-created-message {
    display: none;
    justify-content: center;
    align-items: center; 
    background-color: #4EA72F;
    color: white;
    font-size: 32px;
    padding: 20px 40px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    margin: auto;
}
