/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #000000;
    min-height: 100vh;
    overflow: hidden;
}

/* Container Principal */
.login-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Lado Esquerdo - Imagem */
.login-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.dancers-image {
    width: 100%;
    height: 100vh;
    position: relative;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Lado Direito - Formulário */
.login-right {
    flex: 1;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-form-container {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Logo */
.logo-container {
    margin-bottom: 3rem;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border: 3px solid #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    background: rgba(255, 102, 0, 0.1);
}

.logo-text {
    color: #ff6600;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

/* Formulário */
.login-form {
    width: 100%;
}

.input-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #333;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 0;
    outline: none;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #666;
    font-size: 14px;
    letter-spacing: 1px;
}

.form-input:focus {
    border-bottom-color: #ff6600;
}

.form-input:focus::placeholder {
    color: #999;
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6600;
    transition: width 0.3s ease;
}

.form-input:focus + .input-underline {
    width: 100%;
}

/* Botão */
.login-btn {
    width: 100%;
    max-width: 200px;
    background: #ff6600;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 2rem 0;
}

.login-btn:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

/* Link Esqueceu Senha */
.forgot-password {
    margin-top: 1rem;
}

.forgot-password a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Mensagem de Erro */
.error-message {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid #dc2626;
    color: #fca5a5;
    padding: 12px;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 14px;
}

/* Responsividade */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }
    
    .login-left {
        height: 40vh;
        flex: none;
    }
    
    .login-right {
        flex: 1;
        padding: 1rem;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .login-form-container {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .login-left {
        height: 30vh;
    }
    
    .login-right {
        padding: 1rem 0.5rem;
    }
    
    .logo-circle {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .form-input {
        font-size: 15px;
        padding: 10px 0;
    }
    
    .login-btn {
        max-width: 180px;
        padding: 10px 20px;
        font-size: 15px;
    }
}

/* Landscape Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .login-container {
        flex-direction: row;
    }
    
    .login-left {
        height: 100vh;
        flex: 0.6;
    }
    
    .login-right {
        flex: 0.4;
        padding: 1rem;
    }
    
    .logo-container {
        margin-bottom: 1.5rem;
    }
    
    .logo-circle {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .logo-text {
        font-size: 12px;
    }
    
    .input-group {
        margin-bottom: 1rem;
    }
    
    .login-btn {
        margin: 1rem 0;
        max-width: 150px;
        padding: 8px 16px;
        font-size: 14px;
    }
}