.temporary-login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background: #f0f0f0;
}

.temporary-login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.temporary-login-input {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    -webkit-text-security: disc;
}

.temporary-login-submit {
    padding: 0.5rem;
    border: 0;
    border-radius: 6px;
    background: #007bff;
    color: #fff;
    cursor: pointer;
}
