/* Wrapper box */
.cusr-form-box {
    max-width: 500px;
    margin: 30px auto;
    padding: 25px;
    border: 1px solid #e0e0e0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Heading */
.cusr-heading {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
    color: #333;
}

/* Form Groups */
.cusr-form-group {
    margin-bottom: 15px;
}

.cusr-form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: #444;
}

.cusr-form-group input,
.cusr-form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.cusr-form-group input:focus,
.cusr-form-group select:focus {
    border-color: #55a747;
    outline: none;
}

/* Button */
.cusr-btn {
    width: 100%;
    background: #55a747;
    color: #fff;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cusr-btn:hover {
    background: #46903a;
}

/* Footer */
.cusr-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

.cusr-footer a {
    color: #55a747;
    text-decoration: none;
    font-weight: 500;
}

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