body {
            font-family: 'Segoe UI', sans-serif;
            background-color: #FFFFFF;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            background-color: #0069B4;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            min-height: 600px; /* Altura aumentada */
        }
        @media (min-width: 768px) {
            .container {
                flex-direction: row;
                min-height: 700px; /* Altura aumentada para desktop */
            }
        }
        .left-section {
            position: relative;
            flex: 1;
            min-height: 300px;
        }
        .left-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .left-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 69, 180, 0.3);
        }
        .right-section {
            flex: 1;
            padding: 3rem; /* Padding aumentado */
            background-color: #FFFFFF;
            display: flex;
            align-items: center;
        }
        .form-container {
            max-width: 400px;
            margin: 0 auto;
            width: 100%;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #FFFFFF;
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            z-index: 10;
        }
        .btn {
            background-color: #0069B4;
            color: white;
            border: none;
            padding: 0.75rem;
            border-radius: 8px;
            width: 100%;
            cursor: pointer;
            transition: background-color 0.3s;
            font-weight: bold;
        }
        .btn:hover {
            background-color: #004A6E;
        }
        .input-field {
            width: 100%;
            padding: 0.75rem;
            margin-bottom: 1rem;
            border: 1px solid #D9E5EC;
            border-radius: 8px;
            background-color: #F5F5F5;
            font-size: 0.9rem;
        }
        .toggle-form {
            color: #0069B4;
            cursor: pointer;
            text-decoration: underline;
            font-weight: 600;
        }
        .form-title {
            font-size: 1.75rem;
            color: #004A6E;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

.error-message {
    color: #e53e3e;
    margin-top: 1rem;
    padding: 0.5rem;
    background-color: #fff5f5;
    border-radius: 4px;
    text-align: center;
}

.success-message {
    color: #38a169;
    margin-top: 1rem;
    padding: 0.5rem;
    background-color: #f0fff4;
    border-radius: 4px;
    text-align: center;
}

[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}
    