* {
    font-family: 'Poppins', sans-serif;
}

body {
    background-image: url('../images/landscape.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.box {
    display: flex;
    flex-direction: column; /* Stack containers vertically */
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

.container {
    width: 350px;
    display: flex;
    flex-direction: column;
    padding: 0 15px 0 15px;
    margin-top: -100px; /* Adjust this value as needed to move the content up */
}

.welcome-container {
    position: absolute;
    width: 350px;
    display: flex;
    flex-direction: column;
    padding: 0 15px 0 15px;
    margin-bottom: 500px; /* Space between welcome and navigation */
}

.welcome-header {
    color: #fff;
    text-shadow: 
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000;
    margin-bottom: 20px; /* Space below the header */
}

span {
    color: #fff;
    font-size: small;
    display: flex;
    justify-content: center;
    padding: 10px 0 15px 0;
}

header {
    color: #2e2e2e;
    font-size: 30px;
    display: flex;
    justify-content: center;
    padding: 0 0 30px 0; /* Reduced padding to move the content up */
}

header img {
    max-width: 100%;
    height: auto;
}

.input-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.input-field .input {
    height: 45px;
    width: 87%;
    border: 1px solid rgb(54, 54, 54);
    outline: none;
    border-radius: 30px;
    color: #000000;
    padding: 0 0 0 42px;
    background: rgba(255,255,255,0.4);
}

i {
    position: relative;
    top: -31px;
    left: 17px;
    color: #fff;
}

::-webkit-input-placeholder {
    color: #00000059;
}

.submit {
    border: 1px solid rgb(54, 54, 54);
    border-radius: 30px;
    font-size: 15px;
    height: 45px;
    outline: none;
    width: 100%;
    background: rgba(156, 156, 156, 0.815);
    cursor: pointer;
    transition: .3s;
}

/* Specific styling for the logout button */
.logout-button .submit {
    background-color: rgba(255, 0, 0, 0.815);
    color: white; /* Change text color to white */
}

.submit:hover {
    box-shadow: 1px 5px 7px 1px rgba(0,0,0,0.2);
}

.bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: small;
    color: #fff;
    margin-top: 10px;
}

.left {
    display: flex;
}

label a {
    color: #fff;
    text-decoration: none;
}

.navigation-container {
    position: absolute;
    top: 35%;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px; /* Space above the navigation buttons */
}

.home-navigation-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.nav-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    border: 1px solid #2e2e2e;
    border-radius: 30px;
    background-color: rgba(156, 156, 156, 0.815);
    color: #000000;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s;
    width: 100%; /* Full width buttons */
}

.nav-button:hover {
    box-shadow: 1px 5px 7px 1px rgba(0,0,0,0.2);
}
