#container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    height: max-content;
    width: 100%;
}

#heading {
    display: flex;
    flex-direction: row;
    height: 12vh;
    width: 100%;
    background: white;
    justify-content: space-between;
    align-items: center;
    color: #006bb4;
    padding: 32px;
    font-size: 20px;
    border-bottom: 4px solid #006bb4;
}

#logo {
    height: 62px;
    background-color: white;
}

#logo img {
    width: 100%;
    height: 100%;
}

#main-heading {
    display: flex;
    flex-direction: row;
    width: 53%;
    font-size: 22px;
    text-align: center;
}

#small-container {
    display: flex;
    flex-direction: column;
    height: 60vh;
    width: 100%;
    justify-content: center;
    align-items: center;
    color: black;
    margin: auto;
}

#login {
    display: flex;
    flex-direction: column;
    height: 40vh;
    width: 80%;
    justify-content: space-around;
    align-items: center;
    color: black;
}

a {
    text-decoration: none;
    color: white;
}

.custom-btn {
    color: white; /* Set text color to white */
    border-color: inherit; /* Use the parent's border color */
    width: 95px;
}

.custom-btn:hover {
    background-color: #66545e;
}

#login-btn {
    background-color: #006bb4 !important;
    border: none;
    width: 85px;
}