body {
    background-color: #1e1e1e;
    color: #d4d4d4;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative; 
}

.login-container {
    display: flex;
    align-items: center;
    background-color: #333333;
    padding: 20px;
    border: 1px solid #3c3c3c;
    border-radius: 8px;
}

.login-icon {
    width: 80px;
    margin-bottom: 10px; 
    margin-right: 10px; 
}

.steam_box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #333333;
    font-size: 14px;
}

.steam-button img { width: 100px; }

.message-box {
    position: absolute;
    top: -100px; 
    left: 0;
    right: 0;
    background-color: red;
    color: white;
    text-align: center;
    padding: 10px;
    transition: top 0.5s ease;
    z-index: 1000; 
}

