/* Estilos específicos para a página de login */

body.login-page {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-radius: 15px;
    padding: 40px;
}

.btn-glow {
    width: 100%;
    padding: 15px;
    background: #51FFB4;
    color: #000;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(81, 255, 180, 0.4);
}

.btn-glow:hover {
    background: #fff;
    box-shadow: 0 0 25px rgba(81, 255, 180, 0.8);
    transform: scale(1.02);
}

#canvas-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.login-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-logo {
    margin-bottom: -5px;
    max-width: 300px;
    filter: drop-shadow(0 0 15px rgba(81, 255, 180, 0.4));
    animation: float 6s ease-in-out infinite;
    z-index: 20;
}

.login-container {
    margin: 0 !important;
    width: 100%;
    max-width: 100%;
    padding: 50px 40px !important;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.brand-subtitle {
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 35px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2px solid #51FFB4;
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
}

.login-input {
    background: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
    color: #212529 !important;
    border-radius: 8px !important;
    padding: 15px 20px !important;
    font-size: 16px !important;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.login-input:focus {
    border-color: #51FFB4 !important;
    box-shadow: 0 0 0 3px rgba(81, 255, 180, 0.25) !important;
    background: #fff !important;
    outline: none;
}

.login-input::placeholder {
    color: #adb5bd;
}

.form-label {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
    font-weight: 700;
    text-transform: uppercase;
}

.password-group {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 45px;
    cursor: pointer;
    color: #6c757d;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.toggle-password:hover {
    color: #51FFB4;
}

.toggle-password svg {
    width: 24px;
    height: 24px;
}

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

.main-footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    z-index: 10;
}

.login-error-msg {
    background: rgba(220, 53, 69, 0.2);
    border-color: #dc3545;
    color: #ffadad;
}

.mt-10 {
    margin-top: 10px !important;
}