﻿
@font-face {
    font-family: 'inter-regular';
    src: url('../font/inter/inter-regular.otf') format('opentype');
}
@font-face {
    font-family: 'inter-medium';
    src: url('../font/inter/inter-medium.otf') format('opentype');
}
@font-face {
    font-family: 'inter-bold';
    src: url('../font/inter/inter-bold.otf') format('opentype');
}
@font-face {
    font-family: 'aileron-regular';
    src: url('../font/aileron/aileron-regular.otf') format('opentype');
}
@font-face {
    font-family: 'aileron-semibold';
    src: url('../font/aileron/aileron-semibold.otf') format('opentype');
}
@font-face {
    font-family: 'aileron-bold';
    src: url('../font/aileron/aileron-bold.otf') format('opentype');
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'aileron-regular';
}

.login_body {
    height: 100vh;
    display: flex;
}


.login_left_panel {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 40px;
}

.login-box {
    width: 100%;
    max-width: 380px;
}
    .login-box .form-group input {
        height:50px;
    }
    .logo {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }

    .logo img {
        width: 40px;
        margin-right: 8px;
    }

    .logo h1 {
        font-size: 22px;
        font-weight: bold;
        color: #333;
    }

        .logo h1 span {
            color: #4e73df;
        }
.mar_btn,
.mar_btn:hover,
.mar_btn:focus,
.mar_btn:active {
    background-color: #5D87FF !important;
    color: white !important;
    padding: 5px 15px !important;
    border-radius: 6px;
    text-decoration: none;
    border: 0px !important;
    outline: none;
    box-shadow: none;
}

.mar_white_btn,
.mar_white_btn:hover,
.mar_white_btn:focus,
.mar_white_btn:active {
    background-color: #fff !important;
    color: #5D87FF !important;
    padding: 5px 15px !important;
    border-radius: 6px;
    text-decoration: none;
    outline: none;
    box-shadow: none;
    border: 1px solid #5D87FF !important;
}

.mar_border_btn,
.mar_border_btn:hover,
.mar_border_btn:focus,
.mar_border_btn:active {
    background-color: #fff !important;
    color: #a7a7a7 !important;
    padding: 5px 15px !important;
    border-radius: 6px;
    text-decoration: none;
    border: 0px !important;
    outline: none;
    box-shadow: none;
    border: 1px solid rgba(0, 16, 66, 0.1) !important;
}
.login-box h2 {
    font-size: 30px;
    margin-bottom: 25px;
    font-weight: normal;
    color: #111;
    font-family: 'aileron-semibold';
}

.login-box p {
    font-size: 14px;
    color: rgba(0, 16, 66, 0.5);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        font-size: 14px;
        color: #333;
        display: block;
        margin-bottom: 6px;
    }

    .form-group input {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 14px;
        outline: none;
    }

.options {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 20px;
}

    .options label {
        font-size: 14px;
        color: #555;
        display: flex;
        align-items: flex-start;
        font-weight: normal;
        margin-bottom: 0px;
        display: flex;
        gap: 5px;
        justify-content: center;
        cursor:pointer;
    }

    .options input {
        margin-right: 6px;
    }

.login-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #4e73df;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

    .login-btn:hover {
        background: #375ac7;
    }

.forgot {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

    .forgot a {
        color: #4e73df;
        text-decoration: none;
    }


.login_right_panel {
    width: 50%;
    background: url("../images/background.png") no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    color: #fff;
}

    .login_right_panel p {
        font-size: 14px;
        text-align: center;
        background: rgba(0, 0, 0, 0.5);
        padding: 6px 12px;
        border-radius: 4px;
    }
.field_icon_style {
    position:relative;
}
    .field_icon_style .form-control {
        padding-left:35px;
    }
    .field_icon_style svg {
        position: absolute;
        left: 10px;
        bottom: 15px;
    }







  
    @media(max-width: 900px) {
        .login_body {
        flex-direction: column-reverse;
    }

    .login_right_panel {
        width: 100%;
        height: 45vh;
        align-items: flex-end;
        justify-content: center;
        padding: 20px;
    }

    .login_left_panel {
        width: 100%;
        height: auto;
        padding: 30px 20px;
        border-radius: 25px 25px 0 0;
        margin-top: -25px;
        z-index: 1;
    }

    .login-box {
        max-width: 100%;
    }
}
