﻿:root {
    --brand-blue: #244d78;
    --brand-orange: #f2a94a;
    --brand-orange-hover: #e0963a;
    --brand-bg-cream: #fff9f1;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --font-size-h: 1.25rem;
    --font-weight-h: 800;
}

body.login-page {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
}

.login-card-container, .card-new-client {
    background-color: var(--brand-bg-cream);
    border-radius: 40px;
    padding: 35px 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--card-shadow);
    text-align: center;
}

.login-title {
    color: var(--brand-blue);
    font-weight: var(--font-weight-h);
    font-size: var(--font-size-h);
    margin-bottom: 25px;
}

.input-pill {
    width: 100%;
    border-radius: 30px !important;
    border: 1.5px solid var(--brand-orange);
    padding: 12px 50px 12px 20px;
    background-color: #ffffcc !important;
    margin-bottom: 0;
    color: var(--brand-blue);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    outline: none;
}

    .input-pill:focus {
        box-shadow: 0 0 0 3px rgba(242, 169, 74, 0.2);
    }

.show-password, .hide-password {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--brand-blue);
    z-index: 10;
    opacity: 0.7;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

    .show-password:hover, .hide-password:hover {
        opacity: 1;
        color: var(--brand-orange);
    }

.btn-orange-pill {
    width: 100%;
    background-color: var(--brand-orange) !important;
    border: none;
    color: white !important;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .btn-orange-pill:hover {
        background-color: var(--brand-orange-hover) !important;
        transform: translateY(-1px);
    }

.login-footer-links a {
    color: var(--brand-orange);
    text-decoration: underline;
    font-weight: 700;
    font-size: 0.8rem;
}

@media (max-width: 576px) {
    .login-card-container, .card-new-client {
        max-width: 90%;
    }
}


.logo-login-size {
    max-width: 200px;
    height: auto;
}

.btn-toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    color: #6c757d;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-toggle-password:focus {
        outline: none;
    }