/* Reset padrão */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f0f2f5;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-container {
    background-color: white;
    display: flex;
    width: 100%;
    max-width: 900px;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Lado Esquerdo (Branco com Logo) */
.login-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background-color: #ffffff;
}

.logo-login {
    width: 220px;
    margin-bottom: 30px;
}

.mascote {
    width: 240px;
    height: auto;
}

/* Lado Direito (Azul com Formulário) */
.login-right {
    flex: 1.2;
    background: linear-gradient(135deg, #005ce6 0%, #003d99 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    color: white;
}

.login-right h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Campos de Input */
.input-group {
    width: 100%;
    max-width: 320px;
    margin-bottom: 20px;
    position: relative;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #005ce6;
    font-size: 1.1rem;
}

.input-group input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 1rem;
    background-color: #ffffff;
}

/* Botão Laranja */
.btn-entrar {
    width: 100%;
    max-width: 320px;
    padding: 14px;
    background-color: #ff7f00;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    text-transform: uppercase;
    margin-top: 10px;
}

.btn-entrar:hover {
    background-color: #e67200;
    transform: scale(1.02);
}

/* Responsividade para Celular */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        height: auto;
    }
    .login-left {
        padding: 30px;
    }
    .mascote {
        display: none; /* Esconde o mascote no celular para caber o form */
    }
}