.vh-33 {
    padding-top: 16.67vh;
    height: 33.33vh;
}

.container-fluid {
    background: radial-gradient(circle, #033188, #031741);
}

.auth-form {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 100%;
    animation: slideUp 0.6s ease-out forwards;
}

.form-gap {
    margin-bottom: 20px;
}

.user-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: #122a57;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.gss-logo,
.user-logo {
    position: relative;
    /*
    top: -10vh;
    left: -5vw;
    */
    height: 180px;
    max-width: 400px;
    animation: slideUp 0.6s ease-out forwards;
}

.user-logo {
    top: 0;
    left: 0;
    height: 150px;
}

.user-icon img {
    width: 75%;
    height: auto;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(116deg) brightness(102%) contrast(101%);
}

.custom-btn {
    background-color: #122a57;
    border-color: #0a1b39;
    color: white;
}

.custom-btn:hover {
    background-color: #0a1b39;
    border-color: #0a1b39;
    color: white;
}
@keyframes slideUp {
    from {
        transform: translateY(50%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0%);
        opacity: 1;
    }

    to {
        transform: translateY(50%);
        opacity: 0;
    }
}