.input-block input.error {
    border-color: #f44336 !important;
    background-color: #ffebee !important;
}
.blu-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
#resendTimer {
    font-size: 12px;
    margin-left: 5px;
}
.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left:10px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 5px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.result-message {
    margin: 10px 0;
    padding: 10px;
    border-radius: 4px;
    font-size: 13px;
    display: none;
}
.result-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    font-size:15px;
    text-align:center;
    background: lawngreen;
    color:rebeccapurple;
}
.result-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    font-size:15px;
    text-align:center;
    background: darkred;
    color:white;
}
.result-message.warning {
    display: block;
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    font-size:15px;
    text-align:center;
    background: yellow;
    color:darkgreen;
}
.resendCode {
    transition: all 0.3s ease;
    cursor: pointer;
}
.resendCode:not(:disabled):hover {
    background: white !important;
    color: black !important;
    border-color: red !important;
}
.resendCode:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.resendCode:not(:disabled):hover i {
    color: black !important;
}
.password-strength {
    margin-top: 8px;
}

.strength-bars {
    display: flex;
    gap: 8px;
    margin-bottom: 5px;
}

.strength-bar {
    flex: 1;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.strength-bar.weak {
    background-color: #ff4444;
}

.strength-bar.medium {
    background-color: #ffa500;
}

.strength-bar.strong {
    background-color: #00c851;
}

.strength-text {
    font-size: 12px;
    margin: 0;
    transition: color 0.3s ease;
}

.strength-text.weak {
    color: #ff4444;
}

.strength-text.medium {
    color: #ffa500;
}

.strength-text.strong {
    color: #00c851;
}
