﻿body {
    height: 100vh;
    margin: 0;
    background: url("/img/login/login.webp") no-repeat center center;
    background-size: cover;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}
/* background: url("/img/login/backgroundimage.jpg") no-repeat center center;*/
.login-container {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 400px;
}


.login-logo {
    display: block;
    margin: 0 auto 15px;
    max-width: 150px;
    height: auto;
}

.login-container h2 {
    font-weight: 700;
    margin-bottom: 25px;
    color: #d90000;
    text-align: center;
}

.form-label {
    font-weight: 600;
    color: #d90000;
}

.btn-login {
    background-color: #d90000;
    color: #fff;
    font-weight: bold;
    width: 50%;
    display: block;
    margin: 20px auto;
    padding: 10px;
    border-radius: 30px;
    border: none;
    transition: background-color 0.3s ease;
}

    .btn-login:hover {
        background-color: #d90000;
        color: #fff;
    }

.forgot {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    text-align: center;
}

    .forgot:hover {
        text-decoration: underline;
        color: #d90000;
    }

footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 14px;
}
