﻿* {
    box-sizing: border-box;
}

body.login-body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #031f38 0%, #003366 45%, #2400dc 100%);
}

.login-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.login-brand {
    text-align: center;
    margin-bottom: 28px;
}

    .login-brand .logo {
        width: 64px;
        height: 64px;
        background: #2400dc;
        color: white;
        border-radius: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 30px;
        font-weight: 700;
        margin: 0 auto 15px;
    }

    .login-brand h2 {
        color: #031f38;
        margin: 0;
        font-weight: 700;
    }

    .login-brand p {
        color: #6b7280;
        margin-top: 6px;
    }

.login-card label {
    color: #031f38;
    font-weight: 600;
    margin-bottom: 6px;
}

.login-card .form-control {
    height: 44px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    box-shadow: none;
}

    .login-card .form-control:focus {
        border-color: #2400dc;
        box-shadow: none;
    }

.btn-login {
    width: 100%;
    height: 45px;
    border-radius: 10px;
    border: none;
    background: #2400dc;
    color: white;
    font-weight: 700;
    margin-top: 15px;
}

    .btn-login:hover {
        background: #003366;
        color: white;
    }
