* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px; /* Define o tamanho base para cálculo do rem */
}

html, body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
}

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

.form-section {
    width: 30%;
    height: 100vh;
    background-color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.logo {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.logo img {
    height: auto;
}

.form-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.form-container h2 {
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 1.25rem; /* 18px */
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #666;
    font-weight: 500;
    font-size: 0.875rem; /* 16px */
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.submit-btn:hover {
    background-color: #45a049;
}

.slider-section {
    width: 70%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider {
    height: 100%;
    position: relative;
}

.slides {
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slides img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    flex-shrink: 0;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 24px;
    background: white;
    border-radius: 100px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .form-section {
        width: 100%;
        height: auto;
        min-height: 100vh;
        padding: 20px;
    }
    
    .slider-section {
        width: 100%;
        height: 100vh;
    }
    
    .slides img {
        height: 100vh;
    }
}

/* Para telas muito altas */
@media (min-height: 1000px) {
    .form-section {
        padding: 60px 40px;
    }
    
    .form-container {
        max-width: 500px;
    }
}

/* Para telas muito baixas */
@media (max-height: 600px) {
    .form-section {
        padding: 20px;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .logo img {
        max-width: 150px;
    }
}

.status-message {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.875rem; /* 14px */
    color: #666;
    min-height: 1.25rem; /* 20px */
    padding: 0.5rem;
} 