﻿.login-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f3f5f7;
}

.login-box {
    width: 380px;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-align: center;
}

.login-logo {
    width: 140px;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.login-box h1 {
    font-size: 24px;
    margin-bottom: 25px;
}

.login-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.login-button {
    width: 100%;
    padding: 12px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.login-error {
    color: red;
    margin-top: 15px;
}

.login-footer {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.password-container {
    position: relative;
    width: 100%;
}


    .password-container .login-input {
        padding-right: 45px;
    }


.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
}
