﻿body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #031f38, #003366, #2400dc);
    min-height: 100vh;
}

.login-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 35px;
}

.login-card {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    padding: 40px 75px 45px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-brand {
    text-align: center;
    margin-bottom: 10px;
}

.logo-magna {
    width: 210px;
    height: auto;
    object-fit: contain;
    margin-bottom: -10px;
}

.login-brand p {
    color: #6b7280;
    margin-top: 0;
    margin-bottom: 22px;
    font-size: 18px;
    font-weight: 600;
}

form {
    width: 100%;
}

.form-group {
    width: 100%;
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        color: #031f38;
        font-size: 19px;
        font-weight: 600;
        margin-bottom: 6px;
    }

.form-control {
    width: 100% !important;
    height: 48px !important;
    display: block;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    box-sizing: border-box;
}

    .form-control:focus {
        border-color: #2400dc;
        box-shadow: 0 0 0 3px rgba(36, 0, 220, 0.12);
        outline: none;
    }

    .form-control::placeholder {
        color: #9ca3af;
    }

button.boton-login,
.btn.boton-login {
    width: 100%;
    height: 48px;
    background: #2400dc;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    margin-top: 8px;
    cursor: pointer;
    transition: 0.2s ease;
}

    button.boton-login:hover,
    .btn.boton-login:hover {
        background: #031f38 !important;
        transform: translateY(-1px);
    }

.login-links {
    text-align: center;
    margin-top: 18px;
}
