@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');

.login_screen {
    overflow: hidden;
}

.login_box {
    border-radius: 0;
    width: 70%;
    margin: 0 0 0 -20%;
    height: 200%;
    max-height: unset;
    transform: rotate(20deg);
}

.login_box > div#form {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    transform: rotate(-20deg);
    margin-left: 30%;
    margin-bottom: 25%;
}

.login_box > div#form #logged-in {
    margin-bottom: 15px;
}

.half_screen_login {
    width: 50vw;
}


.box {
    border: 1px solid #dbdbdb;
    border-radius: 15px;
    width: 25vw;
    
    padding: 25px;
}
.dashboard_hero_wrap .box span.descriptor {
    font-weight: 1000;
    font-size: 17px;
    color: #72727e;
}

h4.highlighted_number,
h4.highlighted_number ~ span
 {
    font-size: 100px;
    margin: 135px 0 5px 0;
    height: 100px;
    font-family: 'Monoton';
}

.recent_transaction_container {   
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 5px 10px;
}
.recent_transaction_container:hover {
    border-color: #dbdbdb;
    box-shadow: 0 0 15px 0 #dbdbdb;
    cursor: pointer;
}

#view-page-mobile {
    visibility: hidden;
}
@media (max-width: 800px) {
    .half_screen_login {
        width: 0;
    }
    
    .login_box {
        width: 100vw;
        transform: unset;
    }
    .login_box > div#form, .login_box {
        transform: unset;
        margin: 0;
    }

}
@media (max-width: 1000px) {
    iframe {
        display: none;
    }
    #view-page-mobile {
        visibility: visible;
    }
    
    .box {
        width: 90vw;
        margin-top: 5px;
    }
}