html {
    font-family: 'Arial', sans-serif;
    background-image: url(images/aston_martin_valhalla_2024_interior-HD.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.reset-container {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    max-width: 400px;
    min-width: 280px;
    width: 30%;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease-in-out;
}

.reset-container h2 {
    color: #130f40;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.reset-container h2 span {
    color: #ffee80;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.reset-container input {
    margin: 1rem 0;
    width: 90%;
    text-transform: none;
    color: var(--black);
    font-size: 15px;
    padding: 1rem 1.2rem;
    border: var(--border);
    border-radius: .5rem;
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}

::placeholder {
    color: #000;
}

.reset-container button {
    background-color: #ffee80;
    color: var(--black);
    padding: 0.8rem 2rem;
    margin-top: 1rem;
    font-size: 1.3rem;
    border: none;
    border-radius: 3rem;
    cursor: pointer;
    transition: background-color 0.6s ease;
}

.reset-container button:hover {
    background-color: #130f40;
    color: #f9d806;
}

@media (max-width: 768px) {
    .reset-container {
        width: 80%;
        padding: 2rem;
    }

    .reset-container h2 {
        font-size: 1.5rem;
    }

    .reset-container input {
        font-size: 14px;
        padding: 10px;
    }

    .reset-container button {
        font-size: 1.2rem;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .reset-container {
        width: 90%;
        padding: 1.5rem;
    }

    .reset-container h2 {
        font-size: 1.3rem;
    }

    .reset-container input {
        font-size: 12px;
        padding: 8px;
    }

    .reset-container button {
        font-size: 1rem;
        padding: 8px 12px;
    }
}
