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

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

/* Estilos da página de login */
.login-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

.login-left {
    width: 380px;
    min-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: #ffffff;
    padding: 60px 40px;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.login-logo {
    margin-bottom: 60px;
}

.login-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.login-box {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
    width: 100%;
    max-width: 320px;
}

.login-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #000;
}

.login-right video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-box h1 {
    color: #1a1a1a;
    margin-bottom: 35px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.3px;
    text-align: center;
}

.input-group {
    margin-bottom: 24px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 400;
    font-size: 14px;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s;
    background: #f8f9fa;
}

.input-group input:focus {
    outline: none;
    border-color: #0066cc;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-login:hover {
    background: #0052a3;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.sucesso {
    background: #d4edda;
    color: #155724;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    border: 1px solid #c3e6cb;
    font-size: 14px;
}

.erro {
    background: #fee;
    color: #c33;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    border: 1px solid #fcc;
    font-size: 14px;
}

/* Responsividade */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .login-left {
        width: 100%;
        min-width: 100%;
        padding: 30px 20px;
        min-height: 60vh;
    }

    .login-right {
        min-height: 40vh;
    }

    .login-box {
        max-width: 100%;
    }
}

