* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body, html {
    height: 100%;
    background-color: #f4f4f9;
}

.container {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.left, .right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}

.left {
    background: linear-gradient(135deg, #2c3e50, #1c2833);
    color: #fff;
    flex-direction: column;
    padding: 30px;
    position: relative;
}

.right {
    background: url('../assets/images/atrium1.webp') no-repeat center center;
    background-size: cover;
    height: 100vh;
    width: 100%;
}

h1 {
    margin-bottom: 50px;
    font-size: 2.8rem; 
    text-align: center;
    font-weight: 600;
}

.btn, .btn-action {
    padding: 14px 32px;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    background-color: #ffffff;
    color: #2575fc;
    border-radius: 10px;
    transition: 0.3s;
}

.btn:hover, .btn-action:hover {
    background-color: #e0e0ff;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 320px;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.5s ease;
}

.login-form.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.login-form input {
    padding: 12px;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #c0c0ff;
}

.login-form .actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.login-form .actions button {
    flex: 1;
}

.login-form #esqueceu {
    background-color: #5555aa;
    color: white;
}

.login-form #esqueceu:hover {
    background-color: #444488;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .right {
        height: 40vh;
    }
    h1 {
        font-size: 1.8rem;
    }
    .btn, .btn-action {
        width: 100%;
    }
}
