/* Estilos para Password Reset Link */

/* Container principal */
.password-reset-container {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 24px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Link container */
.password-reset-link-container {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.password-reset-link-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.password-reset-link-content {
    flex: 1;
    margin-right: 12px;
}

.password-reset-link-label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
    font-weight: 500;
}

.password-reset-link-url {
    font-size: 12px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    color: #374151;
    word-break: break-all;
    line-height: 1.4;
}

/* Botão copiar */
.password-reset-copy-button {
    color: #2563eb;
    transition: color 0.2s ease;
    padding: 4px;
    border-radius: 4px;
    flex-shrink: 0;
}

.password-reset-copy-button:hover {
    color: #1d4ed8;
    background-color: #eff6ff;
}

.password-reset-copy-button:focus {
    outline: none;
    color: #1d4ed8;
    background-color: #eff6ff;
}

.password-reset-copy-button svg {
    width: 16px;
    height: 16px;
}

/* Botão enviar email */
.password-reset-send-button {
    background-color: #10b981;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    display: block;
    margin: 0 auto;
}

.password-reset-send-button:hover {
    background-color: #059669;
}

.password-reset-send-button:focus {
    outline: none;
    background-color: #059669;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.password-reset-send-button:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}

/* Estados de status */
.password-reset-status {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-top: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
    border: 1px solid;
}

.password-reset-status.success {
    color: #059669;
    background-color: #f0fdf4;
    border-color: #bbf7d0;
}

.password-reset-status.error {
    color: #dc2626;
    background-color: #fef2f2;
    border-color: #fecaca;
}

.password-reset-status svg {
    width: 12px;
    height: 12px;
    margin-right: 4px;
}

/* Estado vazio */
.password-reset-empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 0;
    color: #6b7280;
}

.password-reset-empty-state-content {
    text-align: center;
}

.password-reset-empty-state-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 8px auto;
    color: #9ca3af;
}

.password-reset-empty-state-text {
    font-size: 14px;
    color: #6b7280;
}

/* Responsividade */
@media (max-width: 640px) {
    .password-reset-link-layout {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .password-reset-link-content {
        margin-right: 0;
        margin-bottom: 8px;
        width: 100%;
    }
    
    .password-reset-copy-button {
        align-self: flex-end;
    }
} 