﻿.login-body {
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #052e26, #0E6B57);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Inter, Arial, sans-serif;
}

.login-card {
    width: 100%;
    max-width: 430px;
    background: #ffffff;
    border-radius: 32px;
    padding: 38px;
    box-shadow: 0 28px 80px rgba(0,0,0,0.28);
}

.login-logo {
    text-align: center;
    margin-bottom: 24px;
}

    .login-logo img {
        max-width: 210px;
    }

.login-card h1 {
    margin: 0;
    color: #0f172a;
    font-size: 34px;
    font-weight: 950;
    text-align: center;
}

.login-card p {
    margin: 10px 0 26px;
    color: #64748b;
    text-align: center;
    font-weight: 600;
}

.login-card label {
    display: block;
    color: #334155;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 18px 0 8px;
}

.login-card input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 15px 16px;
    font-size: 16px;
    font-weight: 700;
    outline: none;
}

    .login-card input:focus {
        border-color: #0E6B57;
        box-shadow: 0 0 0 4px rgba(14, 107, 87, 0.12);
    }

.login-card button {
    width: 100%;
    margin-top: 24px;
    border: 0;
    background: #0E6B57;
    color: #ffffff;
    border-radius: 999px;
    padding: 15px;
    font-size: 16px;
    font-weight: 950;
    cursor: pointer;
}

    .login-card button:hover {
        background: #095846;
    }

.login-error {
    background: #fee2e2;
    color: #991b1b;
    border-radius: 16px;
    padding: 12px 14px;
    font-weight: 800;
    margin-bottom: 18px;
    text-align: center;
}

.login-footer {
    display: block;
    margin-top: 22px;
    color: #94a3b8;
    text-align: center;
    font-weight: 800;
}
.login-forgot {
    display: block;
    text-align: center;
    margin-top: 18px;
    color: #0E6B57;
    font-weight: 900;
    text-decoration: none;
}

    .login-forgot:hover {
        text-decoration: underline;
    }
.login-success {
    background: #dcfce7;
    color: #166534;
    border-radius: 16px;
    padding: 12px 14px;
    font-weight: 800;
    margin-bottom: 18px;
    text-align: center;
}

.login-dev-link {
    background: #f8fafc;
    border: 1px dashed #94a3b8;
    color: #334155;
    border-radius: 16px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    word-break: break-all;
}

    .login-dev-link a {
        display: block;
        margin-top: 8px;
        color: #0E6B57;
    }