@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary: #0061f2;
    --accent: #00cfd5;
    --text-main: #2d3748;
    --text-muted: #718096;
    --bg-light: #f2f5f9;
    --white: #ffffff;
}

body {
    margin: 0; padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    height: 100vh;
    display: flex; align-items: center; justify-content: center;
}

.login-container {
    display: flex;
    width: 100%;
    max-width: 1000px;
    height: 600px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Lado Esquerdo */
.login-info-side {
    flex: 1;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.brand-logo {
    max-width: 180px;
    margin-bottom: 10px;
   
}

.login-info-side h1 {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

/* Lado Direito */
.login-form-side {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Logo exclusiva para Mobile (fica escondida no Desktop) */
.mobile-logo {
    display: none;
    text-align: center;
    margin-bottom: 20px;
}
.mobile-logo img { max-width: 150px; }

.login-form-side h2 { color: var(--text-main); font-weight: 700; margin: 0; }
.subtitle { color: var(--text-muted); margin-bottom: 30px; font-size: 0.9rem; }

/* Inputs */
.form-group { margin-bottom: 20px; position: relative; }
.form-group i {
    position: absolute; left: 18px; top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    background-color: #f8fafc;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    background-color: #fff;
    outline: none;
}

.btn-login {
    width: 100%; padding: 16px;
    background: var(--primary);
    color: #fff; border: none; border-radius: 12px;
    font-weight: 600; cursor: pointer; transition: 0.3s;
}

.btn-login:hover { background: #0052cc; transform: translateY(-2px); }

/* Responsividade */
@media (max-width: 768px) {
    .login-info-side { display: none; }
    .mobile-logo { display: block; }
    .login-container { box-shadow: none; height: auto; }
    .login-form-side { padding: 40px 20px; }
}