/**
 * MaxiDiscos - Login Styles
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #2c5282 0%, #2d3748 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 500px;
}

.logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo-icon {
    margin-bottom: 30px;
}

.logo-icon img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

h1 {
    color: #2d3748;
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    color: #718096;
    font-size: 20px;
    margin-bottom: 40px;
}

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

label {
    display: block;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 20px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 18px;
    border: 3px solid #cbd5e0;
    border-radius: 10px;
    font-size: 20px;
    transition: all 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #2c5282 0%, #2d3748 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.error {
    background: #fff5f5;
    color: #c53030;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 18px;
    border: 3px solid #fc8181;
    font-weight: 600;
}

/* Accesibilidad */
input:focus, button:focus {
    outline: 3px solid #4299e1;
    outline-offset: 2px;
}
