/* ====================================
   TradIA - Forgot Password Page Styles
   ==================================== */

/* Additional styles for forgot password page */
.security-tips {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #c7ccd0;
    padding: 8px 0;
    border-bottom: 1px solid #2b3139;
}

.tip-item:last-child {
    border-bottom: none;
}

.tip-icon {
    color: #02c076;
    font-size: 16px;
    flex-shrink: 0;
}

.hero-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

@media (max-width: 768px) {
    .tip-item {
        font-size: 13px;
    }

    .hero-section h2 {
        font-size: 20px;
    }
}