body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    height: 100vh;
}

.left-side {
    flex: 1;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.right-side {
    flex: 1;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.logo-container {
    text-align: center;
}

.logo-jonas-tem {
    width: 400px;
    height: 400px;
    background-image: url('../images/logo jonas tem.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
    background-color: transparent;
}

.welcome-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
    text-align: center;
}

.subtitle {
    font-size: 1.5rem;
    color: #666666;
    margin-bottom: 3rem;
    text-align: center;
}

.login-form {
    width: 100%;
    max-width: 400px;
}

.mobile-login {
    display: none;
}

.divider {
    text-align: center;
    margin: 20px 0;
    color: #666;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background-color: var(--background-light);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.forgot-password {
    text-align: right;
    margin-bottom: 1.5rem;
}

.forgot-password a {
    color: #666666;
    text-decoration: none;
    font-size: 0.95rem;
}

.forgot-password a:hover {
    color: #333333;
}

.btn-login {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #000000 !important;
    color: #ffffff !important;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: #333333 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .left-side {
        display: none;
    }
    
    .right-side {
        flex: 1;
        padding: 20px;
    }
    
    .welcome-text {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
}