.modal-footer {
    text-align: center;
    color: #666666;
    font-size: 0.85rem;
}

.modal-footer a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}

.modal-footer a:hover {
    text-decoration: underline;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333333;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #DDDDDD;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: #FFFFFF;
}

.form-input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px #dff5e0;
}

.form-input::placeholder {
    color: #999999;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.checkbox-input {
    margin-top: 0.25rem;
}

.checkbox-label {
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.4;
}

.checkbox-label a {
    color: #4CAF50;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-button {
    width: 100%;
    padding: 0.875rem;
    background: #4CAF50;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-bottom: 1.5rem;
}

.form-button:hover {
    background: #6EC071;
}

.form-button:disabled {
    background: #CCCCCC;
    cursor: not-allowed;
}
