.login-container{
    width:100% !important;
    height:100% !important;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center
}


.login-container h1 {
    color: #2c7be5;
    user-select: none;
    cursor: pointer;
}

    .login-container .card {
        width: 445px;
        min-height: 394px;
        background-color: white;
        box-shadow: 0 7px 14px 0 rgba(65, 69, 88, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.07);
        border-radius: 10px;
        padding: 50px;
        box-sizing: border-box;
    }

        .login-container .card .header {
            width: 100%;
            height: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .login-container .card .header a {
                text-decoration: none;
                color: #2c7be5;
                font-weight: 500;
            }

        .login-container .card .content {
            width: 100%;
            height: calc(100% - 30px);
            padding: 10px 0px;
            display: flex;
            flex-direction: column;
        }

            .login-container .card .content .form {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }

                .login-container .card .content .form input {
                    width: 100%;
                    height: 40px;
                    border-radius: 5px;
                    outline: none;
                    border: 1px solid #d8e2ef;
                    padding: 0px 10px;
                    box-sizing: border-box;
                    font-size: 15px;
                }

                    .login-container .card .content .form input:focus {
                        border: 2px solid #2c7be5;
                    }

    .login-container .btn {
        width: 100%;
        height: 40px;
        text-align: center;
        border-radius: 5px;
        text-decoration: none;
        outline: none;
        border: none;
        cursor: pointer;
        font-size: 17px;
        font-weight: 500;
    }

    .login-container .btn-primary {
        background-color: #2c7be5;
        color: white;
        box-shadow: 0 0 0 1px rgba(43, 45, 80, 0.1), 0 2px 5px 0 rgba(43, 45, 80, 0.08), 0 1px 1.5px 0 rgba(0, 0, 0, 0.07), 0 1px 2px 0 rgba(0, 0, 0, 0.08);
    }

    .login-container .btn-google {
        border: 2px solid #DD4B39;
        background-color: white;
        color: #DD4B39;
    }

    .login-container .login-container .btn-google i {
        margin-right: 5px;
    }

    .login-container .card .content span {
        text-align: center;
        margin: 15px 0px;
        font-size: 13px;
        color: #B3A9BB;
    }