/* Estilos específicos para a página de organizador */
.page-container {
    background-color: #f5f5f5;
    padding: 40px;
    min-height: calc(100vh - 60px - 50px); /* Ajuste para header e footer */
}

.organizer-container {
    display: flex;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 50px auto;  /* Change from '0 auto' to '50px auto' for top/bottom margin */
    padding: 0 40px;    /* Add padding for left/right space */
}

.concert-image {
    flex: 1;
    background-image: url('https://images.unsplash.com/photo-1501281668745-f7f57925c3b4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 500px;
}

.concert-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.7) 0%, rgba(100, 181, 246, 0.7) 100%);
}

.form-container {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-title {
    margin-bottom: 30px;
    text-align: center;
}

.form-title h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-title h1 span {
    color: #8b5cf6;
}

.form-title p {
    color: #666;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #8b5cf6;
    outline: none;
}

.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 14px;
    color: #666;
}

.checkbox-group a {
    color: #8b5cf6;
    text-decoration: none;
}

.submit-btn {
    background: #8b5cf6;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #7c3aed;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.login-link a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
}

footer {
    background: #1e3a8a;
    color: white;
    text-align: center;
    padding: 15px;
    width: 100%;
}

@media (max-width: 992px) {
    .organizer-container {
        flex-direction: column;
    }
    
    .concert-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .organizer-container {
        margin: 30px 20px;  /* Smaller margins on mobile */
        padding: 0 20px;    /* Smaller padding on mobile */
        margin-top: 20px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .concert-image {
        display: none;
    }
}

/* Divisor do formulário */
.form-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.form-divider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
    z-index: 0;
}

.form-divider span {
    display: inline-block;
    background: white;
    padding: 0 15px;
    position: relative;
    z-index: 1;
    color: #666;
    font-size: 14px;
}

/* Botão de criar conta */
.create-account-btn {
    display: block;
    background: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}

.create-account-btn:hover {
    background: #f0f0f0;
    color: #8b5cf6;
    border-color: #8b5cf6;
}

.create-account-btn i {
    margin-right: 8px;
}