/**
 * Login Page - Sistema Sapien V2.0 (Simplificado)
 * Design padrão, clean e profissional
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #05636c 0%, #033d45 100%);
}

/* ===== LOGIN CONTAINER ===== */

.login-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    width: 90%;
    max-width: 420px;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HEADER ===== */

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.logo {
    max-width: 150px;
    margin: 0 auto 20px;
    display: block;
}

.login-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: #05636c;
    margin-bottom: 8px;
}

.login-header p {
    font-size: 14px;
    color: #6c757d;
}

/* ===== FORM ===== */

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: #49c3ce;
    box-shadow: 0 0 0 3px rgba(73, 195, 206, 0.1);
}

.form-control::placeholder {
    color: #999;
}

/* ===== BUTTON ===== */

.btn-login {
    background: linear-gradient(135deg, #05636c 0%, #49c3ce 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(5, 99, 108, 0.3);
}

.btn-login:active {
    transform: translateY(0);
}

.btn-login i {
    font-size: 16px;
}

/* ===== RESPONSIVIDADE ===== */

@media (max-width: 480px) {
    .login-container {
        padding: 30px 24px;
        max-width: 95%;
    }

    .login-header h1 {
        font-size: 20px;
    }

    .logo {
        max-width: 120px;
    }
}