
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

html, body {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: url('/Images/backgroundLog.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    justify-content: center;
    position: relative;
    width: 100%;
}
    body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
        z-index: 1;
    }

.logo-top {
    position: relative;
    z-index: 10;
    width: 160px;
    margin: 30px 0 20px 108px; 
    display: block;
}

.login-card {
    position: relative;
    z-index: 10;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 60px 40px;
    max-width: 500px;
    width: 100%;
    margin-left: 300px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    text-align: center;
    transition: transform 0.3s ease;
}

    .login-card:hover {
        transform: translateY(-5px);
    }

    .login-card h2 {
        color: #6097d1;
        margin-bottom: 35px;
        font-weight: 700;
        letter-spacing: 1px;
    }

.position-relative {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6097d1;
}

.form-control {
    border-radius: 50px;
    padding: 15px 20px 15px 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #007bff33;
}

    .form-control:focus {
        box-shadow: 0 0 20px rgba(0,123,255,0.35);
        border-color: #007bff;
    }

.btn-primary {
    border-radius: 50px;
    padding: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    background: linear-gradient(45deg, #2a323c, #00c6ff);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,123,255,0.35);
}

    .btn-primary:hover {
        background: linear-gradient(45deg, #030303, #00c6ff);
    }

.login-footer {
    margin-top: 25px;
    font-size: 0.95rem;
}

    .login-footer a {
        color: #007bff;
        text-decoration: none;
        font-weight: 500;
    }

        .login-footer a:hover {
            text-decoration: underline;
        }

@media (max-width: 992px) {
    body {
        align-items: center;
    }
    .logo-top {
        position: relative;
        display: inline;
    }

    .logo-top, .login-card {
        margin-left: 0;
    }
}


