body {
    display: flex;
    justify-content: center;
    align-items: start;
    height: 100vh;
    margin: 0;
    background-color: #eeeeee;
    font-family: 'Courier New', Courier, monospace;
}

.content {
    margin-top: 10px;
    text-align: left;
    background-color: white;
    max-width: 500px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.url {
    color: blue;
    font-size: 12px;
    word-break: break-all;
}

#reset-password-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#reset-password-form input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

#reset-password-form button {
    padding: 10px;
    font-size: 16px;
    background-color: #4CAF50;
    /* Green */
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    display: block;
    width: 100%;
}

.button-wrapper {
    position: relative;
    display: inline-block;
}

.loader {
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #3498db;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -12px;
    margin-left: -12px;
    display: none;
}

.disabled {
    pointer-events: none;
    opacity: 0.5;
}

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

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 600px) {
    .content {
        width: 100%;
    }
}