/* LifePal Forms CSS */

/* Form container styling */
.form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Form field styling */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

/* Label styling */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

/* Error message styling */
.errorlist {
    list-style: none;
    padding: 0;
    margin: 5px 0;
    color: #e74c3c;
    font-size: 14px;
}

/* Button styling */
.btn {
    padding: 10px 16px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
}

.btn-primary {
    background-color: #4a90e2;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #3a7bc8;
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(1px);
}

/* Help text styling */
.help-text {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Form header styling */
.form-header {
    margin-bottom: 25px;
    text-align: center;
}

.form-header h2 {
    color: #333;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .form-container {
        padding: 15px;
        margin: 0 10px;
    }
}
