* {
    padding: 0;
    margin: 0;
}

.center-v {
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-h {
    margin-left: auto;
    margin-right: auto;
    /* width: 50%; */
}

.login-page {
    width: 100vw;
    height: 100vh;
    background-color: #F5F5F5;
    font-family: "lato", Verdana, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.login-container {
    border-style: solid;
    border-width: 1px;
    border-color: #e2e2e2;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: -3px 3px 20px -14px #000;
}

.login-form p {
    color: #5c8fd6;
    margin-bottom: 10px;
}

.login-form input {
    border-color: #BEC5CB;
    color: #BEC5CB;
    border-radius: 5px;
    border-width: 2px;
    border-style: solid;
    padding-left: 10px;
}

.login-form button {
    color: white;
    background-color: #0066C9;
    border-radius: 5px;
    border: 0;
    width: 100%;
}

.blue-clip-text {
    display: flex;
    color: #ffffff;
    margin-right: 50px;
    margin-top: 35px;
    flex-direction: column;
    align-items: center;
}


/* MOBILE */

@media screen and (max-width: 814px) {
    .login-container {
        height: 70vh;
        display: flex;
    }
    .white-clip {
        display: flex;
        width: 100vw;
        max-height: 100%;
    }
    .blue-clip {
        display: none;
    }
    .login-form input {
        width: 60vw;
        height: 10vh;
    }
    .white-clip {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 5vh;
        margin-bottom: 5vh;
    }
    .white-clip-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
    .white-clip img {
        width: 17vh;
    }
    .login-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: auto 0 auto 0;
        width: 65%;
        max-width: 35vh;
    }
    .login-form input,
    button {
        height: 40px;
        min-width: 100px;
        width: 100%;
        padding-left: 5%;
        margin-bottom: 1vh;
    }
    .login-form input {
        width: 95%;
        padding-left: 5%;
    }
    .white-clip-text {
        color: #006ad0;
        margin: 0;
    }
    .white-clip-text span {
        background-color: #006ad0;
        width: 135px;
        height: 2px;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .white-clip-text p {
        font-size: larger;
    }
    .white-clip-text h2 {
        font-weight: 800;
        font-size: 35px;
    }
}


/* DESKTOP */

@media screen and (min-width: 814px) {
    .blue-clip {
        display: flex;
        height: 477px;
        width: 814px;
        border-color: #e2e2e2;
        border-radius: 15px;
        background-color: #006ad0;
        box-shadow: -3px 3px 20px -14px #000;
        clip-path: polygon(55% 0, 100% 0%, 100% 100%, 42% 100%);
        flex-direction: column;
        align-items: flex-end;
    }
    .login-form input,
    button {
        width: 250px;
        height: 40px;
        margin-bottom: 10px;
    }
    .login-form {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 50px;
        margin-top: 50px;
    }
    .white-clip img {
        position: absolute;
        display: flex;
        width: 130px;
        margin-top: 370px;
        margin-left: 40px;
    }
    .blue-clip-text span {
        background-color: white;
        width: 135px;
        height: 2px;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .blue-clip-text p {
        font-size: larger;
    }
    .blue-clip-text h2 {
        font-weight: 800;
        font-size: 35px;
    }
    .white-clip-text {
        display: none;
    }
    .login-container {
        min-height: 477px;
        max-height: 477px;
    }
}

.body {
    background-color: #f5f5f5;
}