/* Archivo: nova360/public/css/login.css */

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(145deg, #1a1c25, #323642);
    color: #ffffff;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.login-wrapper {
    display: flex;
    width: 90%;
    max-width: 1100px;
    background: #242731;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.login-panel {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2e303a;
    position: relative;
    color: #ffffff;
}

.robot-container {
    text-align: center;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

.robot {
    width: 80px;
    height: auto;
    animation: float 4s ease-in-out infinite;
    margin-bottom: 10px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.login-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    background: #3d4050;
    color: #fff;
}

.login-form input::placeholder {
    color: #ccc;
}

.login-form button {
    width: 100%;
    padding: 12px;
    background-color: #81bd4a;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.login-form button:hover {
    background-color: #6ca83e;
}

.forgot-password {
    margin-top: 10px;
    font-size: 14px;
    color: #ffffff;
}

.login-response {
    margin-top: 15px;
    color: #ff8a8a;
    font-weight: bold;
}

.login-banner {
    flex: 1;
    background: #81bd4a;
    color: #323642;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.promo-box, .news-box {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.promo-box h4, .news-box h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.news-box ul {
    list-style: none;
    padding-left: 0;
}

.news-box li {
    margin-bottom: 5px;
    font-size: 14px;
    color: #1a1c25;
}