﻿
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Inter',sans-serif;
    background: #fff
}

.main-wrapper {
    display: flex;
    height: 100vh;
    width: 100%
}

/* LEFT SIDE */
.left-side {
    flex: 1.2;
    background: url('https://harnishdesign.net/demo/html/oxyy/images/login-bg.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 60px;
    color: #fff;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,77,255,0.72);
}

.left-content {
    position: relative;
    z-index: 2;
    max-width: 480px;
    margin-top: 80px
}

.left-logo {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px
}

.left-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px
}

.left-text {
    font-size: 18px;
    line-height: 1.5
}

/* RIGHT SIDE */
.right-side {
    flex: 1;
    padding: 70px 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 35px
}

.form-control {
    height: 52px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding-left: 18px;
    font-size: 15px;
}

    .form-control:focus {
        border-color: #4a6cf7;
        box-shadow: none;
    }

.login-btn {
    height: 52px;
    font-size: 18px;
    border-radius: 8px;
    background: #0069ff;
    border: none;
}

a {
    color: #0069ff;
    text-decoration: none;
    font-weight: 500
}

.remember-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px
}

@media(max-width:992px) {
    .left-side {
        display: none
    }

    .right-side {
        flex: 1;
        padding: 40px
    }
}


