/* Reset or global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #181A20;
    color: #F0B90B;
    display: flex;
    justify-content: center;
    align-items: center; /* Adjust to start alignment */
    min-height: 119vh;
    flex-direction: column;
    padding-top: 1px;
}

/* New header styles */
#__APP_HEADER {
    width: 100%;
    background-color: #181A20; /* Dark background for the header */
    color: #EAECEF; /* Light text color */
    padding: 1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link img {
    height: 64px;
}

.header-leftside {
    display: flex;
    align-items: center;
}

.header-global-js-top-alert {
    margin-top: 10px;
    background-color: #F0B90B;
    padding: 10px;
    border-radius: 4px;
    color: #fff;
    text-align: center;
}

/* Other page styles */
.container {
    text-align: center;
    padding: 20px;
    max-width: 600px;
    border: #F0B90B;
    border-radius: 8px;
    box-shadow: #F0B90B;
    background-color: #707A8A;
    padding-bottom: 35px;
   
}

h1 {
    color: #F0B90B;
    font-size: 2.5rem;
}

input {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 20px;
}

button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #F0B90B;
    color: #181A20;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #707A8A;
}

#qrCodeContainer {
    margin-top: 30px;
    
    
}


 

#intro-text {
    font-size: 19px;
    color: white;
    text-align: center;
    margin-top: -190px;
    margin-bottom: 50px; /* Try -5px, -10px, -20px until it looks right */

  }