/* === LOGIN PAGE STYLING === */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #ffffff; /* matches site background */
    padding: 40px 20px;
}

.login-box {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 0px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 100%;
    color: #000;
}

.login-title {
    font-size: 26px;
    font-weight: bold;
    color: var(--orange);
    text-align: center;
    margin-bottom: 10px;
}

.login-subtitle {
    font-size: 14px;
    color: #aaa;
    text-align: center;
    margin-bottom: 25px;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.login-form label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #5e5e5e;
}

.login-form input {
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 0;
    /* background-color: #c8c8c8; */
    /* color: #aaa; */
    transition: border 0.3s ease;
    border: 1px solid #10b981;
}

.login-form input:focus {
    outline: none;
    border-color: #10b981;
    /* background-color: ; */
}

.login-btn {
    background-color: var(--orange);
    color: black;
    padding: 12px;
    border: none;
    border-radius: 0;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #10b981;
    color: white;
}

.login-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

.login-footer a {
    color: var(--orange);
    font-weight: 500;
    text-decoration: none;
}

.login-footer a:hover {
    color: #10b981;
    text-decoration: underline;
}


.back-home-btn {
    display: inline-block;
    margin: 30px 10px;
    font-size: 16px;
    font-weight: 500;
    color: #10b981;
    background: transparent;
    border: 1px solid var(--orange);
    padding: 8px 16px;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    /* font-weight: bold; */
}

.back-home-btn:hover {
    background-color: var(--orange);
    color: #000;
    text-decoration: none;
}

@media (max-width: 768px) {
    .back-home-btn {
        margin: 10px 10px -20px 0;
    }
}


.legal-links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.terms-agreement {
    margin: 15px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #e9ecef;
}

.terms-agreement label {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.terms-agreement input[type="checkbox"] {
    margin-right: 8px;
    margin-top: 2px;
}

.terms-agreement a {
    color: #007bff;
    text-decoration: none;
}

.terms-agreement a:hover {
    text-decoration: underline;
}