﻿form {
    flex: 1;
}

#header {
    background-color: var(--bs-primary);
}

.signInButton {
    margin-bottom: 10px;
    background-color: black; /* Blue background */
    border: none; /* Remove borders */
    color: white; /* White text */
    padding: 8px 6px; /* Some padding */
    font-size: 16px; /* Set a font size */
    cursor: pointer; /* Mouse pointer on hover */
    border: 2px solid black;
    /*width: 75%;*/
    text-align: center;
    padding: 15px 40px;
    border-radius: 15px;
}

    /* Darker background on mouse-over */
    .signInButton:hover {
        background-color: white;
        color: dimgray;
        border-color: dimgray;
    }

#idLogo {
    text-decoration: none;
    display: flex;
    align-items: flex-end;
}

#imgLogo {
    margin-bottom: -3px;
    margin-right: 4px;
}

h1 {
    font-size: 10rem;
}
#content-container > .text-center {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    max-width: 95%;
}