﻿body {
    height: 100%;
    margin: 0;
    background: url('../assets/img/login/LoginBackgroud-Desktop.jpg') no-repeat center center;
    background-size: cover;
}

@media (max-width: 767.98px) {
    body {
        background: url('../assets/img/login/LoginBackgroud-Mobile.jpg') no-repeat center center;
        background-size: cover;
    }
}

.bg-cover {
    min-height: 100vh;
}

/* login */
.login-box {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
    overflow: hidden;
}

.logo-side {
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.logo-side img {
    max-width: 150px;
    height: auto;
}

.logo-side h4 {
    font-weight: normal;
    color: #003399;
    margin-top: 20px;
    line-height: 1.5;
}

.form-side {
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.form-side h6 {
    margin-bottom: 30px;
    color: #ff6600;
}

.btn-primary {
    background-color: #ff6600;
    border-color: #ff6600;
}

.btn-primary:hover {
    background-color: #e65c00;
    border-color: #e65c00;
}


/* forgotpassword */
.form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    max-width: 450px;
    margin: auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo img {
    max-width: 150px;
}

.btn-block {
    width: 100%;
}

.separator {
    margin-top: 20px;
    text-align: center;
}

.separator a {
    color: red;
    font-weight: bold;
    }

@media (max-width: 576px) {
    .form-wrapper {
        padding: 20px;
        margin: 20px;
    }

    .logo img {
        max-width: 100px;
    }
}