/* Password Pages - Forgot Password, Reset Password, Change Password */

/* Forgot Password */
.impri-fp-container {
    width: 700px;
    margin-left: auto;
    margin-top: 60px;
    margin-right: auto;
}

.impri-fp-form {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
    flex-direction: column;
}

.impri-fp-form input[type="button"] {
    width: 500px;
    height: 64px;
    font-size: 28px;
    color: white;
    background: var(--imprimed-pioneer-navy);
    border: none;
}

.impri-fp-form input[type="button"]:hover {
    cursor: pointer;
    background-color: var(--imprimed-pioneer-navy-hover);
}

.impri-fp-item {
    display: flex;
    flex-direction: column;
    margin: 20px;
}

.impri-fp-item label {
    font-size: 20px;
    margin-bottom: 12px;
}

.impri-fp-item img {
    margin-left: 15px;
}

.impri-fp-input {
    display: flex;
    border: 2px solid var(--imprimed-opaque-black);
    height: 60px;
}

.impri-fp-input input {
    border: none;
    outline-width: 0;
    width: 100%;
    margin-left: 15px;
    font-size: 24px;
}

.impri-fp-input input::placeholder {
    font-size: 18px;
}

/* Reset Password - Uses shared styles from Change Password section */

/* Change Password */
.impri-change-password {
    width: 700px;
    margin: 80px auto;
    padding: 50px;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 8px 32px rgba(19, 18, 31, 0.12);
}

.impri-change-password .impri-centered-title {
    margin-top: 0;
    margin-bottom: 50px;
}

.impri-change-password-form {
    width: 100%;
}

.impri-change-password-entry {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 30px;
}

.impri-change-password-entry label {
    color: var(--imprimed-pioneer-navy);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.impri-change-password-entry .impri-default-input {
    height: 48px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.impri-change-password-entry .impri-default-input:focus-within {
    border-color: var(--imprimed-pioneer-navy);
    box-shadow: 0 0 0 3px rgba(41, 37, 97, 0.1);
}

.impri-change-password-entry .impri-default-input input {
    width: 100%;
    height: 100%;
    font-size: 16px;
}

.impri-change-password-entry .impri-default-input img{
    margin-left: 10px;
}

.impri-delete-account-btn {
    width: 100%;
    margin-top: 40px;
}

.impri-delete-account-btn input[type="submit"] {
    width: 100%;
    background: var(--imprimed-pioneer-navy);
    color: white;
    height: 50px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.impri-delete-account-btn input[type="submit"]:hover {
    cursor: pointer;
    background: var(--imprimed-pioneer-navy-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(41, 37, 97, 0.3);
}

.impri-delete-account-msg {
    color: var(--imprimed-error-red);
    font-size: 15px;
    font-weight: 500;
    margin-top: 8px;
    min-height: 20px;
}

.impri-password-mismatch {
    color: var(--imprimed-error-red);
    font-size: 15px;
    font-weight: 500;
    margin-top: 8px;
    min-height: 20px;
    visibility: hidden;
}

.impri-password-mismatch.active {
    visibility: visible;
}
