﻿@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #101010;
    background: rgba(227, 239, 254, 0.15);
}
.heading {
    font-size: 20px;
    color: #101010;
    font-weight: 600;
    margin: 0 !important;
}
.logo {
    top: 15px;
    position: absolute;
    left: 10px;
}
.login-form {
    margin-top: 30px;
    min-width: 340px;
}
.login-page {
    height: 100vh;
    background: rgba(230, 237, 245, 1);
    align-items: center;
    display: flex
}
.right-side {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    background: #fff;
    margin: 0 auto;
    padding: 20px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0px 2px 12px rgba(202, 217, 236, 0.5);
}
.login-card .logo {
    padding: 0px 12px 0px 12px;
    border-radius: 12px;
}
.login-bg {
    background: rgba(227, 239, 254, 0.5);
    padding: 20px 30px;
    border-radius: 20px;
}
.login-card {
    background-color: #FFF;
    border-radius: 12px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.login-card-content {
    padding: 30px;
    margin-top: auto;
    margin-bottom: auto;
}
.form-control, .form-select {
    border-color: #C6D4DF;
    font-size: 14px !important;
    color: #101010 !important;
    min-height: 42px;
}
    .form-control:focus {
        border-color: #063756 !important;
        box-shadow: 0px 4px 12px rgba(0, 43, 78, 0.10) !important;
    }
.btn-primary, .btn-primary:focus,
.btn-primary:active {
    background: #063756 !important;
    border: 1px solid !important;
    box-shadow: none;
    color: #FFF;
    min-width: 142px;
    border-radius: 24px;
    font-size: 16px;
    text-align: center;
    line-height: 38px;
    text-decoration: none;
}
    .btn-primary:hover {
        border: 1px solid #03243a !important;
        background: #03243a;
    }
.italic-font {
    font-size: 32px;
    font-style: italic;
    color: #2E435E;
    font-weight: 300;
}
.bold-font {
    font-size: 48px;
    color: #063756;
    margin-left: 130px;
    position: relative;
    font-style: italic;
    font-weight: 900;
}
    .bold-font:after {
        content: '';
        position: absolute;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #BCD1EC 100%);
        bottom: 0;
        left: 0;
        right: 0;
    }
a {
    text-decoration: underline;
    color: #0063C7;
    font-size: 14px;
}
    a:hover {
        text-decoration: none;
    }
::-webkit-input-placeholder {
    color: rgba(153, 153, 153, 1) !important;
    font-size: 16px;
}
@media(max-width:576){
    .right-side {
        width: 90%
    }
}
@media(max-width:767px){
    .right-side{
        width:60% !important
    }
}
@media(max-width:1023px) {
    .login-bg {
        display: none;
    }
    .right-side {
        flex-direction: column;
        width: 50%
    }
    .login-card .logo {
        position: relative;
        left: 0;
        top: 0
    }
    .login-card-content {
        padding: 30px 0;
    }
    .login-card {
        margin: 16px auto;
        width: 100%;
    }
    .login-form {
        min-width: 100%;
    }
}
@media(min-width:1024px) and (max-width:1199.98px) {
    .right-side {
        width: 95%;
    }
    .bold-font {
        font-size: 40px;
    }
}
