﻿
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    //#000002 #121212;
    background: #000002;
    color: #ffffff;
}


.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    height: auto;
    transform: translateY(-50px);
}

.login-logo {
    background: #000002;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    //transform: translateX(-60px);
    width: 100%;
    max-width: 1800px;
    margin-bottom: 0.5rem;
}

.login-card {
    background: #000002;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin-top: 0;
    transform: translateY(50px);
}

.logo {
    width: 340px;
    height: auto;
}

.logo-ngt {
    width: 900px;
    height: auto;
}

.form-group {
    margin-bottom: 1.5rem; 
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input {
    width: 100%;
    padding: 0.5rem 0.5rem 0.5rem 2.5rem; 
    border: 1px solid #6b7280;
    border-radius: 4px;
    background-color: #121212;
    color: #e5e7eb;
}

.input-wrapper i {
    position: absolute;
    left: 0.75rem;
    font-size: 1.2rem; 
    color: #6b7280;
}

.form-input::placeholder {
    color: #6b7280; 
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4);
}

.btn-login {
    background: #030cef;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    transition: background 0.3s;
}

    .btn-login:hover {
        background: #0d6efd;
    }

.alert-error {
    background: #dc2626;
    color: #ffffff;
    padding: 0.75rem;
    border-radius: 4px;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.forgot-password {
    margin-top: 1rem;
}

    .forgot-password a {
        color: #0056b3 ;
        text-decoration: none;
    }

        .forgot-password a:hover {
            text-decoration: underline;
        }
.toggle-password {
    background: none;
    border: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
