body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #181a20;

}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #181a20;
    color: #fff;
    flex-direction: row-reverse;
}
.login-btn {
  
background-color: #E3D301;
border-radius: 6px;
text-align: center;
color: #141717 !important;
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: var(--skin-font-color);
font-size: 14px;
font-weight: 500;
padding: 8px 16px;
width: 115px;
height: 40px;
margin-top: -9px;
}

.login-btn img {
    max-width: 30px;
    margin-right: 5px;
}
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}
.input-group {
    margin-bottom: 20px;
}
label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}
input[type="text"], input[type="password"] {
    width: calc(100% - 20px);
    height: 40px;
    padding: 10px;
    border: none;
    border-radius: 6px;
    background: transparent;
    border-color: #434c5a;
    border: 1px solid #434c5a;;
    color: #181a20;
    font-size: 16px;
    color: #FFFFFF;
    outline: none;
    cursor: pointer;
    font-weight: bold;
   
}
button {
    width: 100%;
    height: 50px;
    background-color: #E3D301;
    color: #141717;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
}

#progressBar {
    background-color: yellow;
   
}

#progressBar::-webkit-progress-value {
    background-color: #E3D301;
  
}