﻿
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-image: url('/Content/Login Background (1).jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(1px);
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.3); 
    z-index: -1;
}

.login-card h4 {
    /*   font-family: 'Poppins', sans-serif;*/
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #000000;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}

.login-card a {
    /*   font-family: 'Poppins', sans-serif;*/
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    text-decoration: none;
}

.login-card {
    position: absolute;
    top: 50%;
    left:25%; 
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 25px 30px;
    max-width: 350px;
    width: 100%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); 
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    color: #fff;
    z-index: 10;
    transition: transform 0.3s ease;
}

    .login-card:hover {
        transform: translate(-50%, -50%) scale(1.02);
    }



input.form-control:focus {
    border-color: #00723F;
    box-shadow: 0 0 10px 3px rgba(0, 114, 63, 0.5);
    outline: none;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.form-select:focus {
    border-color: #00723F;
    box-shadow: 0 0 10px 3px rgba(0, 114, 63, 0.5);
    outline: none;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.login-card {
    background-color: white !important;
}

.forgot{
    font-size:12px !important;
    margin-top:15px;
    color:black !important;
}
.forgot:hover {
    text-decoration: underline;
    color: #00723F !important;
}


/*Logo design*/

.login-logo {
    max-width: 300px; /* Don't stretch beyond original size */
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}







