/* Overall Page Style */
body {

    background-image: url('../images/logout.png');
    background-size: cover;
    font-family: Arial, sans-serif;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center; /* Horizontal centering */
    justify-content: flex-start; /* Align closer to the top */
    height: 100vh;
    padding: 0; /* Remove default padding */
    margin: 0;
}


/* Centered Container */
.logout-container {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.2);
    max-width: 500px;
    width: 90%;
}

/* Title Style */
.logout-container h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    /* text-transform: uppercase; */
    color: #ffdd57; /* Bright sports theme color */
}

/* Message Style */
.logout-container .message {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #d4d4d4;
}

/* Image Container */
.image-container img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Button Style */
.home-button .button {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.home-button .button:hover {
    background-color: #ffdd57;
    color: #000;
    transform: scale(1.1); /* Subtle hover animation */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
}
