/* General Styles */
body {
    background-color: rgb(45, 45, 45); /* Deep dark grey background */
    color: rgb(81, 51, 51); /* Brown-red text */
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

input {
    background-color: white;
    color: rgb(81, 51, 51);
    border: 1px solid rgb(81, 51, 51);
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    max-width: 200px;
}

.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    width: 100%;
    position: absolute;
}

.content-box {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    width: 90%;
    border: 2px solid rgb(81, 51, 51);
}

.image-field {
    margin-bottom: 20px;
    text-align: center;
}

.image-field img {
    display: block;
    margin: 0 auto;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

button {
    background-color: rgb(81, 51, 51); /* Brown-red */
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 10px;
    margin: 5px 0;
    width: 100%;
    box-sizing: border-box;
}

button:hover {
    background-color: white;
    color: rgb(81, 51, 51);
    border: 1px solid rgb(81, 51, 51);
}

/* Image section */
.image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Images */
.logo1 {
    width: 100px;
    height: auto;
}

.logo2 {
    width: 90px;
}

/* Main content container visibility */
#mainContent {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Banner Styles */
header.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    color: rgb(81, 51, 51);
    padding: 10px 20px;
    position: fixed;
    border-bottom: 2px solid rgb(81, 51, 51);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
    width: 97%;
    z-index: 0;
}

.banner-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner-section.center {
    flex: 1;
    text-align: center;
}

.banner-section.left,
.banner-section.right {
    flex-shrink: 0;
}

.banner-section.center h1 {
    padding-left: 47%;
    font-size: 1.8em;
    color: rgb(81, 51, 51);
    margin: 0;
}

.banner-text {
    font-size: 1em;
    color: rgb(81, 51, 51);
}

.powered-by {
    font-size: 0.7em;
    color: rgb(81, 51, 51);
}

.logo {
    height: 40px;
    width: auto;
}

#vbatagline {
    font-size: 0.7em;
}
