body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #F5F7FD;
    overflow: hidden;
}

/* Fondo difuminado */
body::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background:
        radial-gradient(circle at 20% 80%, rgba(72, 171, 247, 0.13) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(49, 206, 54, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 40% 40%, rgba(21, 114, 232, 0.15) 0%, transparent 40%);
    filter: blur(15px);
    z-index: -1;
}

.login-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.login-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}


.login-header {
    text-align: center;
    margin-bottom: 25px;
}

.login-logo {
    margin-bottom: 20px;
}

.login-title {
    font-size: 24px;
    font-weight: 600;
    color: #2A2F5B;
    margin-bottom: 10px;
}

.login-subtitle {
    color: #8d9498;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 14px;
}

.btn-login {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 10px;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #8d9498;
}

.login-footer a {
    color: #1572E8;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}