﻿@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* font-family: poppins, sans-serif; */
    font-family: sans-serif;
}

body {
    /* background: linear-gradient(135deg, #1E3C72, #2A5298); */
    background-color: #1E3C72 !important;
    overflow-x: hidden;
    overflow-y: hidden;
}

.logoimage {
    width: 100px;
    height: 40px;
}
/* ---------------------- TWO COLUMN CONTAINER ----------------------- */
.main-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* ---------------------- LEFT COLUMN ----------------------- */
.left-column {
    flex: 1;
    /* background: linear-gradient(135deg, #1E3C72, #2A5298); */
    background-color: #1E3C72 !important;
    color: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

    .left-column h1 {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .left-column p {
        font-size: 20px;
        line-height: 1.6;
    }

/* ---------------------- RIGHT COLUMN ----------------------- */
.right-column {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    /* background: #e8eaf6; */
    background: #f4fbff;
    /* margin-top: 20px;
        margin-bottom: 20px; */
}

/* ---------------------- SCREEN CARD ----------------------- */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.screen {
    position: relative;
    width: 360px;
    height: 600px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    background: linear-gradient(90deg, #1E3C72, #2A5298);
    border-radius: 15px;
    animation: mediumBlueGlow 2s ease-in-out infinite;
}

/* @keyframes mediumBlueGlow {
      0% { box-shadow: 0 0 4px rgba(0,60,160,0.5), 0 0 8px rgba(0,60,160,0.3); }
      50% { box-shadow: 0 0 8px rgba(0,80,200,0.7), 0 0 12px rgba(0,80,200,0.5); }
      100% { box-shadow: 0 0 4px rgba(0,60,160,0.5), 0 0 8px rgba(0,60,160,0.3); }
    } */


/* @keyframes mediumBlueGlow {
      0% {
        box-shadow:
          0 0 10px rgba(0, 60, 160, 0.45),
          0 0 18px rgba(0, 60, 160, 0.30);
      }
      50% {
        box-shadow:
          0 0 16px rgba(0, 80, 200, 0.55),
          0 0 26px rgba(0, 80, 200, 0.40);
      }
      100% {
        box-shadow:
          0 0 10px rgba(0, 60, 160, 0.45),
          0 0 18px rgba(0, 60, 160, 0.30);
      }
    } */

@keyframes mediumBlueGlow {
    0% {
        box-shadow: 0 0 10px rgba(0, 60, 160, 0.45), 0 0 18px rgba(0, 60, 160, 0.30);
    }

    50% {
        box-shadow: 0 0 16px rgba(0, 80, 200, 0.55), 0 0 26px rgba(0, 80, 200, 0.40), 0 0 20px #2A5298;
    }

    100% {
        box-shadow: 0 0 10px rgba(0, 60, 160, 0.45), 0 0 18px rgba(0, 60, 160, 0.30);
    }
}



.screen__content {
    z-index: 2;
    position: relative;
    height: 100%;
    width: 100%;
}

/* ---------------------- BACKGROUND SHAPES ----------------------- */
.screen__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.screen__background__shape {
    transform: rotate(45deg);
    position: absolute;
}

.screen__background__shape1 {
    height: 480px;
    width: 487px;
    background: #ffffff;
    top: -50px;
    right: 120px;
    border-radius: 0 72px 0 0;
}

.screen__background__shape2 {
    height: 220px;
    width: 220px;
    background: #4C71D9;
    top: -172px;
    right: 0;
    border-radius: 32px;
}

.screen__background__shape3 {
    height: 540px;
    width: 190px;
    background: linear-gradient(270deg, #1E3C72, #2647A7);
    top: -24px;
    right: 0;
    border-radius: 32px;
}

.screen__background__shape4 {
    height: 400px;
    width: 200px;
    background: #6C8BFF;
    top: 420px;
    right: 50px;
    border-radius: 60px;
}

/* ---------------------- LOGIN FORM ----------------------- */
.login {
    width: 85%;
    padding: 20px 0;
    margin: 0 auto;
}

.login__field {
    padding: 10px 0;
    position: relative;
}

.login__icon {
    position: absolute;
    top: 18px;
    color: #3C4BA3;
}

.login__input {
    border: none;
    border-bottom: 2px solid #BFD1FF;
    background: none;
    padding: 10px;
    padding-left: 26px;
    width: calc(100% - 40px);
    font-weight: 700;
}

    .login__input:hover,
    .login__input:focus {
        outline: none;
        border-bottom-color: #3E63C9;
    }

.login__submit {
    /* background:#e8eaf6; */
    background: #f4fbff;
    font-size: 14px;
    margin-top: 18px;
    padding: 14px 20px;
    border-radius: 22px;
    border: 1px solid #BFD1FF;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    width: 100%;
    color: #1E3C72;
    box-shadow: 0px 2px 2px rgba(19, 75, 156, 0.3);
    cursor: pointer;
}

    .login__submit:hover {
        border-color: #3E63C9;
    }

.button__icon {
    font-size: 22px;
    margin-left: auto;
    color: #3C4BA3;
}

.sregister {
    margin-top: 70px;
    color: white;
    font-size: 12px;
    text-align: end;
    margin-left: 110px;
}

.new {
    color: #2196F3;
    text-decoration: none;
    font-size: 13px;
}

.note {
    color: white;
    font-size: 12px;
    text-align: end;
    margin-top: 10px;
    margin-left: 90px;
}

.noteForgetpass {
    color: black;
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
    margin-right: 90px;
}

.noteForgetpassNew {
    color: black;
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
    margin-right: 130px;
}

.forgot-password {
    font-size: 14px;
    margin-top: 8px;
    padding-top: 5px;
}

    .forgot-password a {
        text-decoration: none;
        color: #2196F3;
    }

.eye-icon {
    position: absolute;
    right: 14%;
    top: 50%;
    transform: translateY(-50%);
    color: #303F9F;
    cursor: pointer;
}

.heading {
    margin-bottom: 10px;
}

/* ---------------------- MOBILE ULTRA COMPACT ----------------------- */
@media (max-width: 900px) {

    body {
        background-color: white;
        overflow-x: hidden;
/*        overflow-y: auto;*/
    }

    .logoimage {
        width: 70px;
        height: 30px;
    }

    .main-container {
        flex-direction: column;
        align-items: center;
        justify-content: start;
    }

    .left-column {
        padding: 35px 20px 20px 20px;
        text-align: start;
        flex: none;
        height:140px;
    }

        .left-column h1 {
            font-size: 18px;
            margin-bottom: 8px;
        }

        .left-column p {
            font-size: 11px;
        }

    .right-column {
        width: 92%;
        justify-content: center;
        padding: 10px;
        border-top-left-radius: 28px;
        border-top-right-radius: 28px;
        /* border-top-left-radius: 0px; */
        border-bottom-left-radius: 0px;
        background-color: #1E3C72;
    }

    .screen {
        width: 280px;
        height: 450px;
        border-radius: 12px;
    }

    .login__field {
        padding: 4px 0;
    }

    .login__icon {
        position: absolute;
        top: 11px;
    }

    .login__input {
        padding-left: 22px;
        font-size: 12px;
    }

    .login__submit {
        padding: 10px 14px;
        font-size: 12px;
        border-radius: 18px;
    }

    .button__icon {
        font-size: 16px;
    }

    .sregister, .note, .noteForgetpass .noteForgetpassNew {
        font-size: 11px;
    }

    .eye-icon {
        right: 18%;
    }

    .sregister {
        /*        margin-top: 48px;
        color: white;
        font-size: 10px;
        text-align: center;*/
        margin-top: 66px;
        color: white;
        font-size: 10px;
        text-align: end;
        margin-left: 95px;
    }

    .new {
        color: #2196F3;
        text-decoration: none;
        font-size: 11px;
    }

    .note {
        color: white;
        font-size: 10px;
        text-align: end;
        margin-top: 10px;
        margin-left: 60px;
    }

    .noteForgetpass {
        color: black;
        font-size: 10px;
        text-align: center;
        margin-top: 10px;
        margin-right: 60px;
    }

    .noteForgetpassNew {
        color: black;
        font-size: 10px;
        text-align: center;
        margin-top: 10px;
        margin-right: 100px;
    }

    .screen__background__shape1 {
        height: 493px;
        width: 457px;
        background: #ffffff;
        top: -68px;
        right: 114px;
        border-radius: 0 57px 0 0;
    }

    .screen__background__shape2 {
        height: 193px;
        width: 220px;
        background: #4C71D9;
        top: -169px;
        right: -16px;
        border-radius: 32px;
    }


    .screen {
        animation: mediumBlueGlow 2s ease-in-out infinite;
    }

    @keyframes mediumBlueGlow {
        0% {
            box-shadow: 0 0 5px skyblue, 0 0 10px skyblue, 0 0 20px skyblue;
        }

        50% {
            box-shadow: 0 0 20px skyblue, 0 0 30px skyblue, 0 0 40px skyblue;
        }

        100% {
            box-shadow: 0 0 5px skyblue, 0 0 10px skyblue, 0 0 20px skyblue;
        }
    }
}

@media (max-width: 360px) {
    .sregister {
        /*        margin-top: 50px;
        color: white;
        font-size: 10px;
        text-align: center;
        margin-left: 70px;*/
        margin-top: 70px;
        color: white;
        font-size: 10px;
        text-align: end;
        margin-left: 70px;
    }

    .note {
        color: white;
        font-size: 10px;
        text-align: end;
        margin-top: 6px;
        margin-left: 37px;
    }

    .noteForgetpass {
        color: black;
        font-size: 10px;
        text-align: center;
        margin-top: 12px;
        margin-right: 60px;
    }

    .noteForgetpassNew {
        color: black;
        font-size: 10px;
        text-align: center;
        margin-top: 12px;
        margin-right: 109px;
    }
}








/* ---------------------- ANIMATIONS -----------------------     */
.slide-in {
    animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.forgot-password-btn {
    border: 0px;
    color: #2196f3;
    background: none;
    cursor:pointer
}


@media (min-width: 1024px) and (max-width: 1366px) {
    .left-column h1 {
        font-size: 34px;
        margin-bottom: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .left-column h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }
    .left-column p {
        font-size: 16px;
    }
}

