﻿body {
    background: url('/background.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
}

.header, .main-content-box, footer {
    background-color: rgba(255, 255, 255, 0.8); /* Optional: to make content stand out against the background */
    margin: 20px auto;
    width: 80%; /* This will make the width responsive */
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.main-content-box {
    width: 80vw; /* This makes the width 80% of the viewport width */
    max-width: 100%; /* Ensures it doesn't exceed the viewport width */
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .header .home-button {
        flex: 1;
        margin-left: 10px;
    }

    .header .title {
        flex: 2;
        font-weight: bold;
        font-size: 30px;
        text-align: center;
    }

    .header .icons {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        padding-right: 10px;
        gap: 10px; /* Adds 10px space between the icons */
    }

footer {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #ddd;
}

.button-73 {
    appearance: none;
    background-color: #FFFFFF;
    border-radius: 40em;
    border-style: none;
    box-shadow: #ADCFFF 0 -12px 6px inset;
    box-sizing: border-box;
    color: #000000;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -.24px;
    margin: 0;
    outline: none;
    padding: 1rem 1.3rem;
    quotes: auto;
    text-align: center;
    text-decoration: none;
    transition: all .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

    .button-73:hover {
        transform: scale(1.125);
    }

    .button-73:active {
        transform: scale(1.025);
    }

@media (min-width: 768px) {
    .button-73 {
        font-size: 1.5rem;
        padding: .75rem 2rem;
    }
}

.login-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.password-container {
    position: relative;
    width: fit-content;
    margin: 10px auto;
}

.password-field {
    padding-right: 30px; /* Add padding to make space for the icon */
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.tile-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: left; /* Default alignment */
}

    .tile-container.center {
        justify-content: center; /* Center alignment */
    }
.tile-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    flex: 0 0 200px; /* Prevents growing and shrinking, sets fixed width */
    max-width: 200px; /* Ensures the width does not exceed 200px */
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .tile-item a {
        display: block;
        margin-bottom: 10px;
        font-size: 18px;
        color: #333;
        text-decoration: none;
    }

    .tile-item span {
        display: block;
        margin-top: 10px;
        font-size: 14px;
    }

.icon {
    width: 24px; /* Adjust size as needed */
    height: 24px; /* Adjust size as needed */
    vertical-align: middle;
}

.user-instructions {
    text-align: center;
    font-weight: bold;
}
