/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    background-color: #0d0d0d;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wrapper que contém as duas seções */
.login-wrapper {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* Lado esquerdo - Informações */
.info-container {
    background: #1b1b1b;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.info-content {
    text-align: center;
    color: #00d4ff;
}

.info-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-content p {
    font-size: 1.2rem;
}

/* Efeito de digitação */
.typing-effect {
    font-size: 3rem;
    color: #00d4ff;
    white-space: nowrap;
    overflow: hidden;
}

/* Lado direito - Formulário de Login */
.login-container {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d0d0d;
}

.login-card {
    background: rgba(30, 30, 47, 0.85);
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
}

/* Logo e título */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 100px;
    border-radius: 8px;
}

.login-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #f1f1f1;
}

/* Estilo do formulário */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    color: #00d4ff;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #00d4ff;
    border-radius: 8px;
    background: transparent;
    color: #ffffff;
}

.password-container {
    position: relative;
}

.password-container .toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #00d4ff;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #00d4ff;
    border: none;
    border-radius: 8px;
    color: #1e1e2f;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-login:hover {
    background-color: #007bff;
}

/* Mensagens de erro */
.error-message {
    color: #ff4d4d;
    font-size: 0.9rem;
    margin-top: 10px;
    text-align: center;
}

/* Botão do WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
}

.whatsapp-button:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
    .info-container {
        display: none;
    }

    .login-container {
        width: 100%;
    }

    .btn-login {
        font-size: 0.9rem;
        padding: 10px;
    }

    .form-group input {
        padding: 10px;
        font-size: 0.9rem;
    }

    .login-title {
        font-size: 1.8rem;
    }

    .logo {
        width: 80px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}
