﻿body {
    background-color: #eaf3f7 !important;
    font-family: 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('https://via.placeholder.com/1000x700');
    /* Replace with your image */
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.login-wrapper {
    margin-left: 3rem;
    max-width: 480px;
    background-color: #fff;
    padding: 2rem;
   /* border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
}

.brand-logo {
    height: 40px;
}

.login-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.highlight-green {
    color: #4CAF50;
}

.form-control:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.btn-login {
    background-color: #4CAF50!important;
    color: white;
    font-weight: bold;
}

    .btn-login:hover {
        background-color: #45a049;
    }

.footer-note {
    font-size: 0.875rem;
    margin-top: 1rem;
}

    .footer-note a {
        color: #4CAF50;
        text-decoration: none;
    }

        .footer-note a:hover {
            text-decoration: underline;
        }
