/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.login-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    max-height: 700px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.login-box {
    width: 45%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(44, 62, 80, 0.3);
}

.login-info {
    width: 55%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(51, 51, 51, 0.2) 100%);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.logo i {
    font-size: 3rem;
    color: #f39c12;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
}

.login-header p {
    color: rgba(255, 255, 255, 0.7);
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.input-group label i {
    margin-right: 0.5rem;
    color: #cccccc;
}

.input-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(44, 62, 80, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.input-group input:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3), 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.input-group .toggle-password {
    position: absolute;
    right: 1rem;
    top: 60%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.login-options {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-right: 0.5rem;
}

.forgot-password {
    color: #cccccc;
    text-decoration: none;
}

.btn-login {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 15px;
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.login-footer a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
}

.error-message {
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.login-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

.login-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.login-info ul {
    list-style: none;
}

.login-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.login-info li i {
    color: #cccccc;
    font-size: 1.2rem;
    margin-right: 1rem;
}

@media (max-width: 900px) {
    .login-container {
        flex-direction: column;
        max-height: none;
        height: auto;
        margin: 2rem;
    }

    .login-box, .login-info {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0;
    }

    .login-container {
        margin: 0;
        border-radius: 0;
        height: 100vh;
    }

    .login-box {
        padding: 2rem;
    }
} 