﻿body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    background-image: url('../Image/PgWB1eoNIrNJsXQN-generated_image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center; 
    height: 100%;
}

.login-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
}

.form-control {
    padding-left: 2.5rem;
    height: 38px;
    line-height: 38px;
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    line-height: 38px;
    z-index: 10;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px;
    border-radius: 5px;
    color: white;
    display: none;
    z-index: 1000;
}

.success {
    background-color: #28a745;
}

.error {
    background-color: #dc3545;
}
