* {
    box-sizing: border-box;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

body {
    align-items: center;
    background: url("./background.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.container {
    backdrop-filter: blur(20px);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: #eee;
    padding: 30px 40px;
    max-width: 650px;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.container a {
    color: #fcc31a;
}

.container div {
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.container h2 {
    color: #fcc31a;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.container h3 {
    margin-top: 0.5rem;
}

.container hr {
    color: rgba(255, 255, 255, 0.2);
}

.container p {
    margin: 10px 0;
}

.container ul {
    list-style-position: inside;
}

.container .error {
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 10px 20px;
    background-color: rgba(255, 0, 0, 0.5);
    margin: 10px 0;
}

.container .logo {
    object-fit: scale-down;
}

.container .qr {
    display: flex;
    justify-content: center;
}

.container .qr img {
    object-fit: scale-down;
}

.container .temp {
    display: flex;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
}

.container .temp h6 {
    font-size: 8px;
    font-weight: normal;
}

.container .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.container #loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    width: 100%;
    height: 100%;
}

.container #loading img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    outline: none;
    font-size: 16px;
    color: white;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
    color: white;
}

.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.container .btn {
    width: 100%;
    height: 45px;
    background: #eee;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

