/* css/style.css */

body {
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCI+PHBhdGggZD0iTSAwIDAgTCA2MCAwIEwgNjAgNjAgTCAwIDYwIFogTTAgMzAgTCAzMCAwIEwgNjAgMzAgTCAzMCA2MCBaIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PC9zdmc+') repeat;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.login-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
}

.logo-container {
    margin-bottom: 20px;
}

.logo-container img {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
}

.btn-primary {
    background-color: #000;
    border-color: #000;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    width: 100%;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #222;
    border-color: #222;
}

.forgot-link,
.back-link {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-top: 10px;
}

.forgot-link:hover,
.back-link:hover {
    text-decoration: underline;
}

/* Toast transparan */
.toast {
    background-color: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toast-header {
    background-color: rgba(0, 0, 0, 0.85) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.toast-header.bg-success {
    background-color: rgba(25, 135, 84, 0.9) !important;
}

.toast-header.bg-danger {
    background-color: rgba(220, 53, 69, 0.9) !important;
}

.toast-header.bg-info {
    background-color: rgba(13, 202, 240, 0.9) !important;
}

.toast-header.bg-warning {
    background-color: rgba(255, 193, 7, 0.9) !important;
}