/* Password Reset - Home */
.home-password-reset {
    min-height: 80dvh;
    display: grid;
    place-items: center;
}
.home-password-reset .password-reset-container input{
    outline: none;
    border:none;
    border-radius: 5px;
    height: 30px;
    margin-left: 20px;
}
.home-password-reset .password-reset-container{
    padding: 40px;
    max-width: 100%;
    width: 100%;
    border-radius: 10px;/* Light mode (default) */
    background-color: var(--bg-secondary);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
}
[data-bs-theme="dark"] {
    .home-password-reset .password-reset-container input{
        outline: none;
        border: 1px solid white;
        border-radius: 5px;
        height: 30px;
        margin-left: 20px;
    }
    .home-password-reset .password-reset-container {
        background-color: var(--bs-dark);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    }
}