﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: #f4f6fb;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 25px; */
}

.container {
    width: 1300px;
    max-width: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

/* LEFT SIDE */

.left {
    width: 50%;
    background: #f8f9fd;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

    .left:before {
        content: '';
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: rgba(42,85,163,.08);
        position: absolute;
        top: -80px;
        left: -80px;
    }

    .left:after {
        content: '';
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(245,136,55,.08);
        position: absolute;
        bottom: -70px;
        right: -70px;
    }

    .left img {
        width: 350px;
    }

.illustration {
    width: 100%;
    max-width: 550px;
    z-index: 2;
}

/* RIGHT SIDE */

.right {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    font-size: 38px;
    font-weight: 700;
    /* margin-bottom: 15px; */
}

.blue {
    color: #2a55a3;
    font-size: 25px;
}

.orange {
    color: #f58837;
    font-size: 25px;
}

.heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle {
    color: #777;
    margin-bottom: 20px;
}

.line {
    width: 80px;
    height: 4px;
    background: #f58837;
    border-radius: 20px;
    margin-bottom: 25px;
}

.input-box {
    margin-bottom: 6px;
}

    .input-box label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #333;
    }

.input-wrap {
    position: relative;
}

    .input-wrap i {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: #2a55a3;
    }

    .input-wrap .password-eye {
        position: absolute;
        left: -14px !important;
        top: 50%;
        transform: translateY(-50%);
        color: #2a55a3;
    }

.input-wrap input {
    width: 100%;
    height: 40px;
    border: 1px solid #d9dce6;
    border-radius: 8px;
    padding-left: 40px;
    padding-right: 15px;
    font-size: 15px;
    outline: none;
    transition: .3s;
}

    .input-wrap input:focus {
        border-color: #2a55a3;
        box-shadow: 0 0 0 4px rgba(42,85,163,.08);
    }

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0 25px;
    font-size: 14px;
}

    .options a {
        text-decoration: none;
        color: #2a55a3;
        font-weight: 600;
    }

.remember {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.btn {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 8px;
    background: #f58837;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 14px;
    margin-bottom: 10px;
    transition: .3s;
}

    .btn:hover {
        background: #2a55a3;
    }

.register-link {
    text-align: center;
    margin-top: 0px;
    color: #666;
}

    .register-link a {
        color: #2a55a3;
        text-decoration: none;
        font-weight: 600;
    }

.text-danger {
    color: red !important;
}

@media(max-width:991px) {
    .container {
        flex-direction: column;
        border-radius: 8px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    }

    .body {
        padding: 20px;
    }

    .line{
        display:none;
    }

    .left img {
        width: 300px;
        padding: 25px;
    }

    .left {
        padding: 5px;
    }

    .right {
        padding: 20px;
    }

    .left,
    .right {
        width: 100%;
    }

    .heading {
        font-size: 34px;
        line-height: 1;
        text-align: center;
        display: none;
    }

    .text-danger {
        color: red !important;
    }

    .subtitle{
        display:none !important;
    }
}

@media(max-width:767px) {
    .left img {
        width: 220px;
        padding: 25px;
    }

    .left:before, .left:after {
        display: none;
    }

    .heading {
        font-size: 34px;
        line-height: 1;
        text-align: center;
        display:none;
    }

    body {
        background: #fff;
        padding:20px;
    }

    .container {
        border-radius: 8px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    }

    .text-danger {
        color: red !important;
    }

    .subtitle {
        display: none !important;
    }

    .line {
        display: none;
    }
}

.input-validation-error {
    border: 1px solid #dc3545 !important;
    box-shadow: 0 0 5px rgba(220, 53, 69, 0.3);
}

.field-validation-error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

.input-wrap {
    position: relative;
}

    .input-wrap .form-control {
        padding-left: 40px;
        padding-right: 45px;
        height: 45px;
    }

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 2;
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 2;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    z-index: 2;
    font-size: 16px;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    z-index: 2;
    font-size: 16px;
}
