body.page-login,
body.page-contact,
body.page-password-reset,
body.page-signup,
body.email-confirmation {
    display: flex;
    justify-content: center;
    align-items: center;
}

body.page-login,
body.page-password-reset,
body.page-signup,
body.email-confirmation {
    background-color: #e71c5b;
}

body.page-contact {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.title {
    text-align: center;
}

.title p {
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* ============================================
   CONTAINERS
   ============================================ */

.login-container {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    transition: transform 0.3s ease;
}

.container-logo-login,
.container-logo-contact {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

/* ============================================
   INPUT STUFF
   ============================================ */

.input-group {
    margin-bottom: 1rem;
    width: 100%;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--pink-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.input-group input[type="file"] {
    padding: 0.5rem;
    background-color: var(--gray-100);
    border-style: dashed;
    border-color: #ff6b35;
}

.input-group input[type="file"]:hover {
    background-color: #fff3f0;
}

.input-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.85rem;
}

/* ============================================
   LOGIN AND CONTACT BUTTONS
   ============================================ */

.login-pink-button,
.contact-orange-button {
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.login-pink-button {
    background-color: var(--pink-primary);
}

.login-pink-button:hover {
    background-color: #d41a52;
}

.forgot-password {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #e71c5b;
}

.forgot-password:hover {
    text-decoration: underline;
}

.contact-orange-button {
    background-color: #f7931e;
}

.contact-orange-button:hover {
    background-color: #e55a2b;
}

.login-separator,
.contact-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
    margin: 1.5rem 0;
}

.login-blue-button,
.contact-blue-button {
    display: block;
    text-align: center;
    text-decoration: none;
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.login-blue-button:hover,
.contact-blue-button:hover {
    background-color: #3a7bc8;
}

/* ============================================
   USABILITY - HIDES LABEL BUT KEEP IT FOR SCREEN READERS
   ============================================ */

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.shake {
    animation: shake 0.6s ease-in-out;
}