@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

html,
body {
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

::selection {
    color: #fff;
    background: #ffffff;
}


@media only screen and (orientation : portrait) {
    .container-responsive {
        width: 80%;
        height: 80%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .container-responsive .form {
        height: 100%;
        width: 100%;
        background: #fff;
        padding: 30px 35px;
        border-radius: 5px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }

    .container-responsive .row {
        width: 100%;
        min-height: 500px;
        position: absolute;
        top: 30%;
    }

    .container-responsive .form form .form-control {
        height: 60px;
        font-size: 25px;
    }

    .container-responsive .form form .forget-pass {
        margin: -15px 0 15px 0;
    }

    .container-responsive .form form .forget-pass a {
        font-size: 15px;
    }

    .container-responsive .form form .button {
        height: auto;
        background: #6665ee;
        color: #fff;
        font-size: 50px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .container-responsive .form form .button:hover {
        background: #5757d1;
    }

    .container-responsive .form form .link {
        padding: 5px 0;
    }

    .container-responsive .form form .link a {
        color: #6665ee;
    }

    .container-responsive .login-form form p {
        font-size: 30px;
    }

    .container-responsive .row .alert {
        font-size: 30px;
    }

    .container-responsive .row .form form h2 {
        font-size: 50px;
    }
}

@media only screen and (orientation: landscape) {
    .container-responsive {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .container-responsive .form {
        background: #fff;
        padding: 30px 35px;
        border-radius: 5px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }

    .container-responsive .form form .form-control {
        height: 40px;
        font-size: 15px;
    }

    .container-responsive .form form .forget-pass {
        margin: -15px 0 15px 0;
    }

    .container-responsive .form form .forget-pass a {
        font-size: 15px;
    }

    .container-responsive .form form .button {
        background:#04AA6D;
        color: #fff;
        font-size: 17px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .container-responsive .form form .button:hover {
        background: #048f5c;
    }

    .container-responsive .form form .link {
        padding: 5px 0;
    }

    .container-responsive .form form .link a {
        color: #6665ee;
    }

    .container-responsive .login-form form p {
        font-size: 14px;
    }

    .container-responsive .row .alert {
        font-size: 14px;
    }



}