﻿html, body {
    height: 100%;
    margin: 0;
}

/* FULL SCREEN BACKGROUND */


body {
  
    background-image: url("../Content/images/background_img.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* DARK OVERLAY */


/* CENTER CARD */
.login-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* CARD */
.login-card {
    width: 900px;
    height: 480px;
    background: #fff;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* LEFT IMAGE */
.login-left {
    width: 50%;
}

    .login-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* RIGHT FORM */
.login-right {
    width: 50%;
    padding: 50px 40px;
}

.logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 130px;
}

.form-control {
    height: 45px;
    border-radius: 6px;
}

.btn-primary {
    height: 45px;
    border-radius: 6px;
}


.login-box {
    width: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Input wrapper */
.input-group {
    position: relative;
    margin-bottom: 18px;
}

    /* Icon */
    .input-group .icon {
        position: absolute;
        top: 50%;
        left: 14px;
        transform: translateY(-50%);
        color: #ff9800;
        font-size: 16px;
    }

    /* Input */
    .input-group input {
        width: 100%;
        height: 46px;
        padding-left: 42px;
        border-radius: 6px;
        border: 1px solid #ddd;
        font-size: 14px;
    }

        .input-group input:focus {
            border-color: #ff9800;
            outline: none;
        }

/* Forgot password */
.forgot {
    text-align: right;
}

    .forgot a {
        font-size: 12px;
        color: #999;
        text-decoration: none;
    }

        .forgot a:hover {
            color: #ff9800;
        }

/* Login button */
.login-btn {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(to right, #ff9800, #ffb300);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}
