/* Main Form Box */
.qr-form-container {
    max-width: 480px;
    margin: 30px auto;
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 7px 25px rgba(0,0,0,0.08);
}

/* Title */
.qr-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Label */
.qr-label {
    font-size: 15px;
    font-weight: 600;
    margin: 12px 0 6px;
    display: block;
}

/* Input box wrapper */
.qr-input-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #f1f1f1;
    border-radius: 14px;
    padding-left: 40px;
    margin-bottom: 10px;
}

/* Icons */
.qr-icon {
    position: absolute;
    left: 12px;
    font-size: 19px;
    opacity: 0.7;
}

/* Inputs */
.qr-input-box input {
    width: 100%;
    padding: 13px 14px;
    border: none;
    background: transparent;
    font-size: 17px;
    border-radius: 14px;
    outline: none;
}

/* Eye toggle */
.eye-toggle {
    position: absolute;
    right: 14px;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.7;
}

/* Submit button */
.qr-submit-btn {
    width: 100%;
    background: #007a20;
    padding: 15px;
    border-radius: 14px;
    font-size: 18px;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.qr-submit-btn:hover {
    background: #006018;
}

/* SUCCESS BOX */
.update-success-box {
    max-width: 480px;
    margin: 30px auto;
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 7px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.update-success-box h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.success-buttons {
    margin-top: 25px;
}

.success-btn {
    display: block;
    margin: 12px 0;
    padding: 14px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
}

.success-btn.green {
    background: #008f2e;
    color: #fff;
}

.success-btn.outline {
    border: 2px solid #008f2e;
    color: #008f2e;
    background: transparent;
}

.update-error {
    max-width: 460px;
    background: #ffe5e5;
    padding: 20px;
    border-radius: 12px;
    color: #900;
    margin: 20px auto;
    text-align: center;
    font-size: 18px;
}