﻿main {
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: #78E8FF;*/
    background-image: url("/HomepageResources/SVG/Home_Banner_Background.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

.main-content {
    width: 90vw;
    height: 90vh;
    max-width: 800px;
    max-height: 600px;
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 1px 1px 5px 1px
}

#title {
    text-align: center;
    margin-bottom: 5rem;
}

#form-container {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

#loginForm {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#page-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.onevault-bar-logo img {
    height: 50px;
}

.onevault-bar-logo {
    display: block !important;
    margin-left: 20px;
}

@media (max-width: 768px) {
    .onevault-bar-logo {
        margin-left: 0;
    }

    .onevault-header div {
        justify-content: center;
    }
}