.reset-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #6c757d;
    position: relative;
    z-index: 1;
}

.step a {
    text-decoration: none !important;
    color: black;
}

.step.active {
    background-color: black;
    color: white;
}

.step.active a{
    color: white;
}

.step.completed {
    background-color: #000;
    color: white;
}

.step-connector {
    width: 100px;
    height: 2px;
    background-color: #e9ecef;
    margin: 17px 10px;
}

.step-connector.active {
    background-color: red;
}

.password-strength {
    height: 5px;
    border-radius: 2px;
    margin-top: 0.5rem;
    background-color: #e9ecef;
    overflow: hidden;
}

.strength-meter {
    height: 100%;
    width: 0;
    transition: all 0.3s ease;
}

.requirement-list li {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.requirement-list li.valid {
    color: #000;
}

.requirement-list li i {
    width: 20px;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.password-toggle {
    cursor: pointer;
    color: #6c757d;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 2rem;
}

.verification-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 1.5rem;
    border-radius: 10px;
    border: 2px solid #dee2e6;
    margin: 0 5px;
}

.verification-input:focus {
    border-color: red;
    box-shadow: none;
}

.product-card,
.shipping-card,
.thanks-card {
    background: white;
    border-radius: 10px;
    transition: transform 0.2s;
}

.thanks-card {
    margin-top: 250px;
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 1px solid #dee2e6;
    border-radius: 6px;
}

.product-image-border {
    border-radius: 8px;
    border: 1px solid #b9b9b9;
    height: auto;
}

.product-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.summary-card {
    background: white;
    border-radius: 10px;
    position: sticky;
    top: 20px;
}

.remove-btn {
    color: #dc2626;
    cursor: pointer;
    transition: all 0.2s;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #f3f4f6;
    border: none;
    transition: all 0.2s;
}

.quantity-btn:hover {
    background: #e5e7eb;
}

.discount-badge {
    background: #dcfce7;
    color: #166534;
    font-size: 0.875rem;
    padding: 4px 8px;
    border-radius: 6px;
}

.thanks-height {
    height: 85vh;
}

.option-group {
    cursor: pointer !important;
}

.selected-border {
    border: 2px solid #202A52;
}

small {
    font-size: 12px;
}
