body {
    background-color: #0f0f0f;
    display: flex;
    color: white;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px;
}

.favicon {
    width: 64px;
    height: 64px;
}

.time {
    font-size: 24px;
    margin: 0;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 300px;
}

.password-input, .submit-btn {
    padding: 10px;
    font-size: 16px;
}

.submit-btn {
    background-color: #c25802;
    color: white;
    border: none;
    border-radius: 5px;
}

.submit-btn {
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #c2580280;
}

.password-input:focus {
    outline: none;
    border-bottom: 2px solid #c25802;
}

::placeholder {
    color: #666666;
}

.message {
    margin-top: -70px;
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 26px;
    text-align: center;
}

.loader {
    position: absolute;
    top: 50%;
    left: 47.4%;
    border: 8px solid transparent;
    border-radius: 50%;
    border-top: 8px solid #c25802;
    width: 70px;
    height: 70px;
    animation: spin 1.2s linear infinite;
}

.flash {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-33%, -50%);
    width: 100vw;
    height: 100vh;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}