/* Main Colors */
:root {
    --primary-color: #e2bdba;
    --primary-color-light: #efd8d6;
    --primary-color-dark: #c9a4a1;
    --secondary-color: #ffffff;
    --text-color: #333333;
    --light-gray: #f8f9fa;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
}

/* Image collage - lado esquerdo */
.image-collage {
    position: relative;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1502602898657-3e91760cbb34?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.image-collage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.collage-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: #fff;
    width: 80%;
    z-index: 1;
}

.collage-text h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.collage-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-top: 2rem;
    opacity: 0.8;
}

/* Login form - lado direito */
.login-form-container {
    background-color: #fff;
    max-width: 550px;
    margin: 0 auto;
    padding: 2rem;
}

.form-title {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 0.8rem 1rem;
    height: auto;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(226, 189, 186, 0.25);
}

.form-floating > .form-control {
    padding: 1.5rem 1rem 0.5rem;
}

.form-floating > label {
    padding: 1rem 1rem 0.5rem;
}

.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #aaa;
    z-index: 10;
}

.btn-login {
    background-color: var(--primary-color);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-login:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.forgot-link, .register-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.forgot-link:hover, .register-link:hover {
    color: var(--primary-color-dark);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .login-form-container {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .form-title {
        font-size: 1.5rem;
    }
    
    .login-form-container {
        padding: 1.5rem;
    }
}

/* Para criar efeito de colagem - usado nos cantos da colagem de imagens */
.image-collage::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
}

/* Step forms - formulário em etapas */
.step-form {
    display: none;
}

.step-form.active {
    display: block;
}

.step-title {
    color: var(--primary-color-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.back-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.back-link:hover {
    color: var(--primary-color-dark);
    text-decoration: underline;
}