* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
}

body {
    background: linear-gradient(135deg, #ffffff, #797979);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.login-container {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        width: 800px;
        height: 400px;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        animation: fadeInUp 0.8s ease-out;
}

/* Lado esquerdo */
.visual-card {
    flex: 1;
    background: linear-gradient(180deg, #4B71AC, #0E2C59, #1A4380);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding:  150px 20px;
    position: relative;
}

.visual-card h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.visual-card p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Botão centralizado na divisão */
.arrow-btn {
    position: absolute;
    top: 50%; 
    right: -25px; 
    transform: translateY(-50%); 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #0E2C59; 
    color: #0E2C59;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.arrow-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Lado direito - Formulário */
.login-card {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #333;
}

h2 {
    text-align: center;
    color: #0E2C59;
    margin-bottom: 30px;
}

h2 span {
    color: #0E2C59;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: #0E2C59;
}

.btn-login {
    background: #0E2C59;
    color: #fff;
    border: none;
    padding: 10px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-login:hover {
    background: #0E2C59;
    transform: scale(1.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}