﻿/* Login fuente — Estela IceboxAdmin */

html,
body {
    min-height: 100%;
}

body {
    background: linear-gradient(180deg, #f7f9fc 0%, #edf1f7 100%);
}

.login-shell {
    min-height: calc(100vh - 56px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
}

.login-card-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border: 1px solid #e8eef4;
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(0, 28, 50, .14);
    padding: 42px 38px 34px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 4px;
}

.login-logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.login-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 181, 204, .12);
    border: 1px solid rgba(0, 181, 204, .25);
    color: #00b5cc;
    font-size: 1.7rem !important;
}

.login-logo-text {
    font-family: "Outfit", "Instrument Sans", sans-serif;
    font-size: 1.65rem;
    line-height: 1;
}

.logo-estela {
    color: #001c32;
    font-weight: 700;
}

.logo-app {
    margin-left: 5px;
    font-weight: 300;
    background: linear-gradient(90deg, #00b5cc 0%, #00cbb2 55%, #2bc47c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-logo-badge {
    font-size: .62rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #003761;
    border: 1px solid rgba(0, 55, 97, .25);
    border-radius: 999px;
    padding: 3px 8px;
    font-weight: 700;
}

.btn-login-corp {
    width: 100%;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    color: #374151 !important;
    border: 1.5px solid #d1d5db;
    border-radius: 4px;
    font-family: "Instrument Sans", sans-serif;
    font-size: .98rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: background .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease, transform .16s ease;
}

    .btn-login-corp:hover {
        background: #e0f7fa;
        border-color: #00b5cc;
        color: #006a92 !important;
        box-shadow: 0 12px 28px rgba(0, 181, 204, .18);
        transform: translateY(-1px);
    }

    .btn-login-corp .material-symbols-outlined {
        font-size: 1.25rem !important;
    }

.login-help {
    text-align: center;
    margin-top: 2px;
}

    .login-help a {
        color: #00a6bd !important;
        font-size: .9rem;
        font-weight: 500;
        text-decoration: none !important;
    }

        .login-help a:hover {
            text-decoration: underline !important;
        }

@media (max-width: 576px) {
    .login-shell {
        padding: 24px 16px;
    }

    .login-card {
        padding: 34px 24px 28px;
        border-radius: 16px;
    }

    .login-logo {
        flex-wrap: wrap;
    }

    .login-logo-text {
        font-size: 1.45rem;
    }
}
