body {
    font-family: Roboto, sans-serif;
    background: #f4f4f4;
}

.form-container {
    max-width: 500px;
    margin: 100px auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-container img {
    display: block;
    margin: 0 auto 20px;
}

.form-logo {
    display: block;
    width: 75px;
    margin: 0 auto 28px;
}

.form-title {
    font-size: 22px;
    font-weight: 700;
    color: #09581b;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.form-description {
    background: #f0f9f4;
    border-left: 4px solid #09581b;
    padding: 14px 18px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.7;
}

.form-description strong {
    color: #09581b;
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.form-description small {
    color: #555;
    font-size: 13px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    display: block;
}

.form-label-note {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    font-style: italic;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #09581b;
    box-shadow: 0 0 0 2px rgba(9, 88, 27, 0.1);
}

.form-control::placeholder {
    color: #aaa;
    font-style: italic;
}

.form-select {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.3s;
}

.form-select:focus {
    outline: none;
    border-color: #09581b;
    box-shadow: 0 0 0 2px rgba(9, 88, 27, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #09581b;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #0a6622;
}

.form-footer {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 15px;
    line-height: 1.5;
}

.required {
    color: #d32f2f;
}

/* Error message styling */
.error-message {
    color: #d32f2f;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #d32f2f;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
    border-color: #d32f2f;
    box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.1);
}