body{
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}
#container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#login, #authorize{
    width: 300px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.label {
    font-weight: bold;
    text-align: left;
    width: 169px;
    margin-top: 20px;
}
#login-button, #authorize-button {
    width: 175px;
    padding: 5px;
    background-color: #748cc8;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}
#footer{
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 12px;
}
.help-text {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

.lucide-loader {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#cookie {
    margin-top: 25px;
    font-size: 10px;
    color: #55555587;
    text-align: center;
    max-width: 300px;
    border: 1px solid #55555587;
    padding: 10px;
    border-radius: 10px;
}